Generate CRUD code against LINQ datasource
I have a rather large database exposed to my application using LINQ-to-SQL. I need to 开发者_开发知识库generate the boilerplate CRUD code and would rather not write it by hand. Other than CodeSmith's PLINQ, is there something that would just generate that code from he DBML file? (the interfaces would be a bonus - but just the code for now). I'd prefer something that would not embed itself into my VS project - I just the code generated.
Thanks and Happy Holidays!
i dont think there is a ready made soultion to create inetrfaces and entity objects for CRUD from Dbml file.
you could consider to use T4 Templates
精彩评论