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:

  1. Code infrastructure to allow us to create application quickly, easily and hopefully in an error proof way (from DB to UI).

  2. 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:

  1. My developer sits with a screenshot.

  2. Define an entity based on EDMX model

  3. Define basic queries for the Entity (GetAllByPageIndex, GetAll, Update, GetById etc)

  4. Define UI style (read only, list, grid, tabs..)

  5. Hit generate

  6. Gets the new code and adjusts it to meet the demands.

link|improve this question
feedback

1 Answer

Here's a list.

Here's a comparison.

If you're already on .NET, I'd start with the ADO.NET Entity Framework.

If you want to generate ASP.NET from tables, try something like this.

If you want to better code than that, use ASP.NET MVC.

link|improve this answer
Hi Thanks for you answer however we are past this stage. In fact, we are using EF for about year. The issue is that we want to boost are development process and to easily generate code for: 1. DAL Managers (over EF) 2. Basic BL (so we can just go and fill the logic application inside). 3. UI - based on ASP .NET. 4. WCF Service to serve the UI. The best scenario as I see it is: 1. My developer sits with a screenshot. 2. Define an entity based on EDMX model 3. Define UI style (read only, list, grid, tabs..) 4. Hit generate 5. Gets the new code and adjusts it to meet the demands. – nadavy Oct 20 '11 at 12:30
Added links (and removed earlier snide comment). – Stu Oct 20 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

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