Simple ADO.NET C# Stored Procedure Generator
Posted
by Ron
on Stack Overflow
See other posts from Stack Overflow
or by Ron
Published on 2009-09-19T14:03:07Z
Indexed on
2010/05/03
3:08 UTC
Read the original article
Hit count: 319
I am using Visual Studio 2005, Sql Server 2005, C#, ADO.NET. We have a very large database and routinely adding new stored procedures. I am tired of writing the C# wrapper code for these stored procedures, seems like there should be some simple utility or Add In that would allow me to simply point to a stored procedure and generate some generic C# code.
I am not looking for some big ORM or data access layer framework. The company I am doing this for is not interested in moving to something like that right now. Just wanting something to take the grunt work out of writing the C# wrappers around stored procedures. Again, prefer that we do not have to include in other 3rd party libraries, etc.
Any ideas?
© Stack Overflow or respective owner