R – What tools are available to auto-generate ASP.NET MVC REST services from domain objects

asp.net-mvccode generationfluent-nhibernatenhibernaterest

I am developing an application for which I want to expose the basic CRUD operations on most of the database entities through REST web services. A colleague has demonstrated some impressive code generation using Grails.

I would like to be able to generate my REST services as well, but using ASP.NET MVC instead of Grails. I planning on using Fluent-NHibernate for the ORM. The underlying database is PostgreSQL.

Are there any tools available that would assist me in generating the REST services in ASP.NET MVC from the domain objects?

Best Answer

You should check out T4 templates.

Related Topic