Would someone explain how to get LINQ working with Sqlite.
|
|
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. |
||
|
|
|
|
Check out our LINQ to SQLite implementation. |
||
|
|
|
|
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 :) |
|||
|
|
|
|
I would like to add that you can use Linq to Sql with SqlLite with a couple of stipulations:
For example, you cannot use FirstOrDefault() in any of your Linq queries because it will result in something like:
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. |
|||
|
|
|
|
Yup there is a SqlLite Linq Provider as mentioned by CMS Check out SQL server compact and it works well with Linq |
||
|
|
|
Check this provider: Also you can consider using SQL Compact which has very good LINQ-to-SQL support. |
||
|
