Friday, September 11, 2009

4 steps to use readymade DAL component (Data application blocks)

Please feel free to download my free 500 question and answer videos which covers Design Pattern, UML, Function Points, Enterprise Application Blocks, OOP'S, SDLC, .NET, ASP.NET, SQL Server, WCF, WPF, WWF, SharePoint, LINQ, SilverLight, .NET Best Practices @ these videos http://www.questpond.com/

Introduction
One of the most important components in a project is the DAL component. Many developers end up creating their own DAL component which is pretty time consuming. A Microsoft enterprise application
block has a very decent and time tested DAL component i.e. the Enterprise data application blocks. This tutorial will run through the necessary steps of how you can use Enterprise data application blocks in your DAL component.

Step1 :-
Install enterprise application blocks from
http://www.microsoft.com/downloads/details.aspx?FamilyId=90DE37E0-7B42-4044-99BE-F8ECFBBC5B65&displaylang=en

Once you install the block open the enterprise library configuration screen.


Step2:- Open the
project web.config file in which you want to reuse the data application block. Once you have opened the web.config file we need to provide ConnectionString as shown in the below figure.


Step 3:- Save the setting and then set the default database to the currently configure connection string. In this sample we have renamed the connection string to ‘MyDatabase’. So we have selected the default database as ‘MyDatabase’.


Step 4 :- Now that we done all the configuration we need to write the code to call the data application block. First step import the two important namespaces of enterprise library. In the second step use the databasefactory static class to create the database object. If you remember we had made the ‘MyDataBase’ as a default. So the factory uses the default connection string to create the database object.

In the third step pass the stored procedure which needs to be executed. If the stored procedure has input parameters you can use the overloaded method to pass the data. Currently we want to get the dataset to bind with the grid so we have called the ‘ExecuteDataset’ function. In the final step we have binded the same with data grid.

Nine lines of code compressed to three lines of code
Ok what have we achieved by this. Nine lines of code has become three lines of code…PRODUCTIVITY

No comments: