RoR-like dynamism in .NET?

Y

Yash Ganthe

Hi,

Ruby on Rails provides a concept called ActiveRecord which generates a
class based on the schema of a table in the database. It further
provides a feature called Scaffolding which generates web forms for
CRUD operations of the entity.

We would like to have basic web forms created based on the fields in
the tables. If the fields change, the form should change so that the
next time someone accesses it, the new fields are seen.
Is there any similar framework for .NET?

Thanks,
Yash
 
J

Joern Schou-Rode

We would like to have basic web forms created based on the fields in
the tables. If the fields change, the form should change so that the
next time someone accesses it, the new fields are seen.
Is there any similar framework for .NET?

ASP.NET Dynamic Data (almost) does what you ask for:
http://www.asp.net/dynamicdata/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top