How do I convert SQLite DB files to LINQ ORM files? Is there any utility like SQLMetal.exe?
|
|
After all the answer is: NO. SQLMetal is the best utility to convert *.sdf (SQLComact) files to *.dbml schema. |
||
|
|
|
|
You're looking for DbLinq. It's an Open Source project that brings LINQ to SQL to other DB platforms. Pull down the source, compile the project...and then you'll run DbMetal.exe against your SQLite database to generate the *.cs file. Update You'll also have to modify any existing connections string and add the DbLinqProvider parameter. For example:
Instead of:
|
||||||||||
|
