C # POCO Generation from SQLite Database

Is there a way to generate POCO classes from a SQLite database?
Like sqlmetal for sql server?

I’m not looking for something quite “heavy”, like code guides ...

+3
source share
2 answers

Perhaps Entity Framework? You can generate EF objects from the database, and then modify the created classes as needed.

+1
source

Late, but my legs made me look for such a tool, and someone could benefit from this great generator that I found:

http://salardbcodegenerator.codeplex.com/

Hope this helps.

0
source

All Articles