0

Is there a software to generate C# objects from SQL tables?

4
  • 1
    Have you looked at Entity Framework? Commented Sep 4, 2011 at 14:03
  • 1
    The last time I saw this asked I suggested Codesmith. stackoverflow.com/questions/5897559/… Commented Sep 4, 2011 at 14:06
  • The question is broad. There are lots of ORM frameworks available now, try adding more details: where it will be used, what additional functionality is required, how large is the application etc. Commented Sep 4, 2011 at 16:28
  • The various frameworks are all valid, but you need to identify more details about exactly what you need ot get the right one for you. Commented Sep 4, 2011 at 16:29

4 Answers 4

4

Most popular from the Microsoft:

Sign up to request clarification or add additional context in comments.

Comments

4

Or subsonic

Comments

1

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.

Comments

1

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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.