vote up 0 vote down star

How do I convert SQLite DB files to LINQ ORM files? Is there any utility like SQLMetal.exe?

flag

67% accept rate

2 Answers

vote up 0 vote down check

After all the answer is: NO. SQLMetal is the best utility to convert *.sdf (SQLComact) files to *.dbml schema.

link|flag
vote up 1 vote down

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:

SqliteConnection("DbLinqProvider=Sqlite;Data Source=MyDatabase.sqlite");

Instead of:

SqliteConnection("Data Source=MyDatabase.sqlite");
link|flag
Somrhing wrong. I can not use generated (DbMetal.exe) files with sqlite.phxsoftware.com provider... – Sasha Nov 4 at 16:58
As I can understand generated with DbMetal.exe(code.google.com/p/dblinq2007) code is incompatible with SQLite provider from sqlite.phxsoftware.com. – Sasha Nov 4 at 17:21
That's the provider I use it with (granted, that's on Mono). Make sure your connection string is properly formatted for use with DbLinq. For example...SqliteConnection("DbLinqProvider=Sqlite;Data Source=MyDatabase.sqlite"); – Justin Niessner Nov 4 at 17:57
You use System.Data.SQLite.Linq.dll and System.Data.SQLite.dll from sqlite.phxsoftware.com? What do you mean "granted, that's on Mono"? – Sasha Nov 5 at 8:30
Yes...but unfortunately I'm not sure what issue you're having. The other option you mightw ant to look in to is using that SQLite provider with Entity Framework (the officially supported Microsoft ORM). – Justin Niessner Nov 5 at 14:16
show 2 more comments

Your Answer

Get an OpenID
or

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