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?