Generate Info (wrapper) Class from stored procedure
- by Adem
Hello everybody
I am in a crucial project and I am trying to speed up the development phase by using codesmith for generating the business class DAL and info class for the tables of my project.
There are about 50 tables with relationships parent child many to many and for retrieving data I have to code several inner joins in stored procedures.
I have to combine fields from many tables and this makes working with the info class difficult.
Is there anyway to generate info class from stored procedures or to be more exact is there a way to parse the result set of the stored procedure and to generate the info class with properties for every column in that result set.
Please if anyone can give me some advice and tell me how to achieve this.
Best Regards