Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Entity Framework power tools : visualstudiogallery.msdn.microsoft.com/… has an option "Reverse Engineer Code First" – BASarat Mar 6 at 3:38

closed as off topic by Bo Persson, Andrew Barber, Gavin Simpson, Praveen Kumar, 0x499602D2 Dec 22 '12 at 15:03

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.

6 Answers

up vote 2 down vote accepted

Try CodeSmith is very good application.

share|improve this answer
codesmith is not a free solution :( – ktutnik Aug 7 '12 at 22:57

Use this T4 Template T4 Template

share|improve this answer
best solution so far – ktutnik Aug 7 '12 at 22:57

I highly suggest Subsonic. I've been using it for years and it works great. It should do exactly what you want.

share|improve this answer

Hm, haven't tried this myself, but from a high-level, you may wish to try this

  1. Use DataSet in your application to retrieve DB Schema
  2. Generate an Xsd from your DataSet for each target table
  3. Use Xsd.exe to create auto-generated Data Transport Objects [DTO], aka Plain Old C# Objects [POCO]
share|improve this answer

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.

share|improve this answer

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