ASP.NET MVC CRUD UI autogeneration tools?

Does anyone know of any tools for building ASP.NET MVC CRUD user interfaces (like controllers and views for admin tools), given:

  • A collection of model objects.
  • A set of repositories to check out these objects.

thanks

+2


a source to share


3 answers


There is a project on codeplex called MVCCrud that will automate the repository and controller. JqGrid support is also possible (search, sort, etc.). It is not included in the project, but its very easy to add some T4 templates to create the look you want.



If you just want a normal crud function this is super fast. The only drawback is the only Linq2Sql repository, but you can easily add your own using your interface. Easy to expand or use parts.

+2


a source


The Crud template that ships with ASP.NET MVC is based on T4, which is the code generation tool that ships with Visual Studio. This means you can take templates and customize based on your taste and make your own ... look at the ninja tips and tricks Scott Hanselman goes into in detail:



http://channel9.msdn.com/posts/matthijs/ASPNET-MVC-2-Ninja-Black-Belt-Tips-by-Scott-Hanselman/

+2


a source


Serenity platform

Serenity is an open source project that aims to reduce boiler room code in your development project. It comes with a T4 based code generator that will provide services and UI for your tables.

0


a source







All Articles