Software that generates C# objects from database tables
Is there a softwar开发者_JS百科e to generate C# objects from SQL tables?
Most popular from the Microsoft:
Linq to Sql
Entity Framework
Or subsonic
See a list of available frameworks. I would add that NHibernate have generated lots of good community feedback.
Also take a look at Castle Active Record.
I'm the creator of SqlSharpener which is a light-weight tool that will parse your *.sql files (like in an SSDT project) and create DTO objects and stored procedure wrappers. It is faster than any ORM out there because it generates code via T4 templates to output pure ADO.NET code at design-time, so it's crazy fast.
精彩评论