I'm looking for a way to improve the software development process in my organization.
Since most of our work is data system in ASP .NET I'm looking for one of the two:
Code infrastructure to allow us to create application quickly, easily and hopefully in an error proof way (from DB to UI).
A system that allows to:
A. Get a data model.
B. Easily create business entities from it (both simple and complex)
C. Generate code quickly (preferably customized code).
Basically I've thought to develop something by my own using T4 templates, but I know that in order to develop something very solid I'll have to spend hundreds of hours, which unfortunately I can't afford. In addition, we've tried to work with dynamic data however it didn't give us the level of control we want.
I'll appreciate if you'll share your ideas about the subject. Basically I prefer free solutions but if you know a system which is really worth the buck I might consider to buy it.
Thank you very much for your help :)
Cheers, Nadav
EDIT:
The best scenario as I see it is:
My developer sits with a screenshot.
Define an entity based on EDMX model
Define basic queries for the Entity (GetAllByPageIndex, GetAll, Update, GetById etc)
Define UI style (read only, list, grid, tabs..)
Hit generate
Gets the new code and adjusts it to meet the demands.