I'm Looking for some samples (will be better if they are open source) that enabling Programmer to Generate UI from Database. I want to review them for the framework that i want to develop for myself. Already i reviewed ASP.NET Dynamic Data and Nettiers. Also i welcome your suggestions , tips , comments.
2 Answers
Have a look at a project I'm about to release, CodeGenerator. There is a sample project which illustrates how you can use CodeGenerator to quickly generate an entire administrative site. Have a look and let me know your thoughts.
BTW, this is just a small example of what CodeGenerator can do.
3 Comments
While perhaps not directly what you may want, have a look at Entity Framework Code First to let the code drive the DB model and it works well with existing databases.
Then with MVC you could use MVCScaffolding to generate your views but in this case it uses the Models not the DB directly.
It's a slightly different way than you might be looking for but it is still worth a look to help you as you look at this.