vote up 3 vote down star
4

Would someone explain how to get LINQ working with Sqlite.

flag

36% accept rate

8 Answers

vote up 0 vote down

On this time there is NO good tools to do this!

LINQ providers for SQLite all is in alpha stage (for example:dblinq2007). And it is very big risk to use it in commercial purpose! So maybe in future...

If you want ot use ADO.NET there is good ove: phxsoftware.

link|flag
vote up -1 vote down

Check out our LINQ to SQLite implementation.
You can find an overview here.

link|flag
vote up 3 vote down

The link provided by CMS doesn't work anymore. I have used this one as it now seems to be baked into their SQL lite ADO .NET provider.

Unfortunately they still don't support the designer mode of VS for creating classes :(

Also be aware that SQL Server compact doesn't support the design mode for LINQ classes! However if you want to use the entity framework the designer does work for SQL lite and SQL Server compact :)

link|flag
vote up 0 vote down

I would like to add that you can use Linq to Sql with SqlLite with a couple of stipulations:

  1. You cannot use the Linq to Sql designer which means you have to hand roll your classes.
  2. You have to be careful not to do certain operation which will result in Sql code which is not supported by SqlLite.

For example, you cannot use FirstOrDefault() in any of your Linq queries because it will result in something like:

select top 1 * from table where ...

Since SqlLite doesn't support the "top 1" syntax, you will gt a runtime Sql error.

Other than that, I have been using Linq to Sql with SqlLite with great success for basic CRUD operations.

link|flag
vote up 1 vote down

Yup there is a SqlLite Linq Provider as mentioned by CMS

Check out SQL server compact and it works well with Linq

There is another thread on SO which you should check

link|flag
Thanks for adding this. I had read this before posting my own question but still didn't understand how do get Linq working so I decised to write up the question myself. – minty Nov 26 '08 at 15:36
vote up 0 vote down

Check this provider:

SqlLite Linq Provider

Also you can consider using SQL Compact which has very good LINQ-to-SQL support.

link|flag
Linq is missing a critical ZIP. – jcollum Jan 24 at 2:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.