vote up 1 vote down star
2

Hi,

My question is about nHibernate, or any other ORM for .net that can do what I am looking for : for my web developements, I use Django Framework; the admin pages are automatically generated, so that you can do the CRUD operations through a GUI -- web interface -- right after having created your model.

I wonder if nHibernate (or any other ORM/framework) offers the same feature : generating very basic forms for the Create/Update/Delete operations on the tables of the model.

Note : the scope of my question is not ASP.net, but Windows Forms Applications using nHibernate or any ORM.

Many thanks Peyman

flag
NHibernate has nothing to do with presentation but if you change the topic for example to "Generate CRUD from entities in asp.net mvc" the question will be more relevant. Sharp Architecture is using T4 Toolbox to generate CRUD: wiki.sharparchitecture.net/VSTemplatesAndCodeGen.… – orjan Oct 28 at 4:53
Are you looking for something that generates from the NH mappings, or from the class model? – Vijay Patel Oct 28 at 11:58
I am looking for anything that can simply Add records to the data, update them and delete them according to the dependencies. – Peyman Oct 29 at 8:53

2 Answers

vote up 0 vote down

There are a couple of scaffolding tools for asp.net mvc but I don't think none of them can be compared with Grails scaffolding capabilities: http://www.grails.org/Scaffolding

http://sharparchitecture.net/ http://www.twinforms.com/products/mvcscaffold/index.php http://mvccrud.codeplex.com/

link|flag
vote up 0 vote down

Subsonic has this feature for web apps, but I don't believe it has this feature for WinForms apps.

Subsonic is open source and based on T4 templates, so it's very possible that you could modify the Subsonic T4 templates that generate the WebForms scaffolding and have them generate WinForms scaffolding instead.

link|flag

Your Answer

Get an OpenID
or

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