Does sqlite support linq-to-SQL?

Does sqlite support linq-to-SQL?

+2


a source to share


3 answers


No database supports LINQ. LINQ is an abstraction layer on top of the database, so it depends on the ADO.NET provider. LINQ-to-SQL is also tied to SQL Server.



What is this provider called SQLLite supports LINQ to Entities.

+3


a source


There is a third party library called LinqConnect that aims to provide Linq-to-SQL support to various database backends - including SQLite.



+1


a source


There's also IQToolkit , which does nothing but override all LINQ-to-SQL in open source. This is great if you want raw access to your database. The IQToolkit Contrib can be very handy if you follow this route.

If you are more like ORM, you can take a look at SubSonic (which is built on IQToolkit).

+1


a source







All Articles