Anyone know of a simple tool to quickly create POCO classes based on an existing database?
I am just looking to create the POCO classes that could be used with any ORM that supports it so my interface and model can remain independent.
|
Anyone know of a simple tool to quickly create POCO classes based on an existing database? I am just looking to create the POCO classes that could be used with any ORM that supports it so my interface and model can remain independent. |
||||
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Try CodeSmith is very good application. |
|||
|
|
|
Use this T4 Template T4 Template |
|||
|
|
|
I highly suggest Subsonic. I've been using it for years and it works great. It should do exactly what you want. |
|||
|
|
|
You can use built-in T4 code generation in edmx models. It is explained here: http://weblogs.asp.net/jgalloway/archive/2011/02/24/generating-ef-code-first-model-classes-from-an-existing-database.aspx |
||||
|
|
|
Hm, haven't tried this myself, but from a high-level, you may wish to try this
|
|||
|
|
|
Entity Framework 5 (included in .NET 4.5) has a feature called "Code First" which allows you to work with POCO objects. Here is an article about Entity Framework Code First. |
|||
|
|