Mustafa Magdy
Mustafa Magdy

Reputation: 1330

Best portable DB engine that supports Linq

I need to know what is the best portable db, for this situation

I've an application base on sql server db, we use both LINQ TO SQL, and ADO.NET, in this application.

Now we need to make a portable version of it, but the fact we are using Linq To Sql, preventing us from using MS Access, as there is not out of the box solution for that (other than some 3rd parties, and we don't want to use them).

So I need to a db engine that is:

if it is not completely portable, is there is a one that can be easily attached & deattached, from client PC.

Upvotes: 2

Views: 258

Answers (2)

Rami Alshareef
Rami Alshareef

Reputation: 7140

Check this code project article: LinqToSQL: Comprehensive Support for SQLite, Microsoft Access, SQServer2000/2005

Hope this helped.

Upvotes: 1

marapet
marapet

Reputation: 56466

Did you check out SQL Compact Edition?

Downloadable for free and a list of reasons why to use it

It seems the latest and greatest version (4) does not support LINQ-to-SQL, but the previous version (3.5) does.

Upvotes: 2

Related Questions