views:

10

answers:

1

Has anyone used SQLite before with asp.net? Is there a SQLite Linq provider? Do you recommend something other than SQLite? Would like to hear your thoughts.

Will this work as the master database and then backup to a sql server 2005 db? Can you run a hybrid of the two?

A: 

I wouldn't use SQLite at all if I don't have the need to rebuild the database each and every time I ran my code. Read more about Asp.Net and SQLite here!

Java Dude