I want to generate C# code automatically, for data access in my asp.net projects. Which of the approaches (also why) is more suitable for automatic C# code generation: Entity Framework or ApexSql Code?

Please note that I'll be updating db model from time to time. I want to do this with minimal effort (e.g. without need to run a sql diff tool if possible).

link|improve this question

50% accept rate
feedback

1 Answer

I may be wrong, but I don't think ApexSql has code generation like EF. From what you have mentioned, it sounds like you want EF Code First.

Code-First Development with Entity Framework 4

link|improve this answer
I was thinking using the model first approach. For apex part, "ApexSql Code" can be used for code generation: apexsql.com/help/apexsqlcode/html/… – ace Nov 27 '11 at 11:09
Does EF create any stored procedures? Or is it not necessary thanks to linq?? – ace Nov 27 '11 at 11:13
Not sure, but I have used LLBLGen Pro before and it does any and everything. NHibernate is a good tool as well. – rick schott Nov 27 '11 at 11:20
@ace: EF isn't a "code generator" - it's a database access technology. EF can use stored procedures - but it doesn't create any – marc_s Nov 27 '11 at 11:40
feedback

Your Answer

 
or
required, but never shown

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