65.9K
CodeProject is changing. Read more.
Home

C# DAL Method Code Generator

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.80/5 (9 votes)

May 19, 2008

CPOL

1 min read

viewsIcon

76654

downloadIcon

4860

Generates C# data access layer method code for SQL Server stored procedures

Click to enlarge

Introduction

DAL Method Generator is a simple utility to generate data access layer methods in C# for SQL Server stored procedures. Have you ever written too many data access layer methods in C# to connect to SQL server stored procedures? This utility could save your effort using few clicks.

Using the Utility

C# DAL Method Generator is written using C# and you will require .NET Framework 2.0 to execute.

To use the utility, just invoke the EXE, which should open the Connect to SQL Server dialog below. It uses Windows authentication to connect to the SQL Server. Future work includes connecting to various other data stores like Oracle, etc. with other authentication as well.

Sample Image - maximum width is 600 pixels

Once connected to the server, you can drill down to see the databases and stored procedures for which you have permission.

Sample Image - maximum width is 600 pixels

To select all the stored procedures in a database, right click-on the node "Stored Procedures" and click "Add all Stored Procs to List". To add selected stored procedures, right click on them and choose, "Add to List". Selected stored procedures will appear on the right pane. Provide the method name for the C# method, by default the system uses the stored procedure name only. Also choose the return type for the method. By default, all methods generated return void.

Click to enlarge

To generate C# DAL methods, click on File -> Generate Code or the Generate Code Tool bar item. The code will be generated as below:

Click to enlarge

Points of Interest

I would like to extend it further to generate C# business entity, DAL method, basic CRUD stored procedures for the business entity based on table definitions and also to support other data stores.

History

  • 19th May, 2008: Initial post