vote up 0 vote down star

Hi,

I've got Sqlite working in a basic sense for my C# project in Visual Studio 2008 via use of the ADO.net Sqlite wrapper from http://sqlite.phxsoftware.com/.

Question - For a C# winforms newbie what VS2008 data access layer approach would you recommend I look to use for my winforms app, as I need to write/read data from the sqlite database?

Tahnks

flag

71% accept rate

1 Answer

vote up 1 vote down

How about using an ORM like Subsonic? SubsonicProject.com

link|flag
I was thinking of one of the Microsoft approaches that is integrated with VS2008...(but I'm new to .net)...is there not a way in VS2008 to automatically create the C# wrappers to access the data in the database? – Greg Oct 9 at 11:09
You mean like using Linq? Check out this related question: stackoverflow.com/questions/250071/… – Nils Oct 9 at 13:59
yes - thanks, this is the kind of thing I had in mind - does this mean there is no Microsoft out of the box Linq To Sql for sqlite? – Greg Oct 10 at 5:14
what about Entity Framework for example too? if there were sqlite support would this be any easier way to get a basic layer in place so I could work in the C# object world and not have to type SQL for my sqlite database? – Greg Oct 10 at 5:24
Entity Framework is supported by the SQLite ADO provider. There are a few issues with it that can be worked around. See: stackoverflow.com/questions/936804/… – Nils Oct 16 at 9:46

Your Answer

Get an OpenID
or

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