Click here to Skip to main content
15,880,651 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello
I am looking for a code generation tool with ready template in vb.net and ADO.net.
I want to use this tool to create my by basic DAL and all objects and pages on an existing database.
I will appreciate any advice
Regards
sara
Posted

1 solution

This is a fairly open-ended question. Code generation can take on a number of different forms depending on how much you want done. For simple things, T4 templates are usually good enough. In your case, I would assume you want more. Here are a couple of options for you to look through:

Entity Framework - EF will take your existing database and create a DAL for you that handles all of the plumbing. You can then use T4 templates to create ASP.NET MVC pages to handle the CRUD operations.

If you are looking for full-service code generation, you might want to try DevForce or IronSpeed.

DevForce - http://www.ideablade.com/products/devforce-features.aspx[^]
IronSpeed - http://www.ironspeed.com/products/Overview.aspx?c=AspAlliance[^]

I'm not sure about the VB.NET support on either of these solutions but really you won't be doing much coding at all if you go this far.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900