How To Bind GridView Using LINQ To SQL

Here are the steps: 
 
Step 1:

Firstly, we need to create an empty project by opening Visual Studio by pressing command devenv in the start menu search bar or using Windows Run-Command by pressing (Windows icon + R ) and enter devenv. It will open the installed version of Visual Studio.

If by pressing this opens the old one, you can change it by changing the registry value for updated version by following this link.


Step 2: Now after opening Visual Studio you can create a new website by going to File, New, then Website or by pressing Shift+Alt+N command in Visual Studio.


Step 3:
Now give a name to the project and also select desired location of website.


Step 4:
Now create a new web form by pressing combination of keys (Ctrl + Shift + A).


Step 5:
Now we first add GridView control to the Web Form. 
  1. <asp:GridView ID="gvitems" runat="server" AutoGenerateColumns="false">  
  2.                 <Columns>  
  3.                     <asp:BoundField DataField="ID" HeaderText="Item ID" ItemStyle-Width="60"  />  
  4.                     <asp:BoundField DataField="Name" HeaderText="Item Name" ItemStyle-Width="150" />  
  5.                     <asp:BoundField DataField="Quantity" HeaderText="Item Quantity" ItemStyle-Width="150" />  
  6.                 </Columns>  
  7.             </asp:GridView>  
Note: (Possible Exceptions)
  1. Make sure that GridView control must be placed in <form> tag with runat='server' attribute.

  2. Another thing which you need to take care of is that you must use AutoGenerateColumns="false".
If you are using custom columns which are binding date then you must set this attribute to false otherwise see the image for reference.

As you can see the columns repeated by default, it is set to true when you set it to false and it come to its original position of number of assigned columns.
 
Step 6: Now we can add New LINQ to SQL class to the project.
 
 
 
 Note: If you are creating an empty project then after adding dbml to your website it gives you the following prompt:
---------------------------
Microsoft Visual Studio
---------------------------
You are attempting to add a special file type (LINQ to SQL Classes) to an ASP.NET Web site. In general, to use this type of item in your site, you should place it in the 'App_Code' folder. Do you want to place the file in the 'App_Code' folder?
---------------------------
Yes No Cancel
 
 
 
 If you choose Yes option then new folder with the name of App_Code created automatically by the Visual Studio IDE and add dbml inside it.
 If you choose No, then no special folder created in spite of dbml added at your root directory.
 
After adding DBML file your view look like the following.
 
 
 
As you can see the new dbml class file you can create table and drag and drop from server explorer to the Left view of dbml class to create data classes and in the right view you can drag and drop stored procedures to create methods.
 
Step 7:  Now lets create database table to get values by querying LINQ query. 
  1. CREATE TABLE ITEMS  
  2. (  
  3. ID INT NOT NULL PRIMARY KEY,  
  4. NAME VARCHAR(100) NOT NULL,  
  5. QUANTITY VARCHAR(100) NOT NULL  
  6. )  
Step 8: 

Connect to the server explorer, connect and drag drop table on the left hand side of the dbml class as elaborated above. Firstly, we open the Server Explorer from View => Server Explorer or by pressing keyboard shortcut combination (Ctrl + W, L).
 
 

Right click on Data Connections, New Context Menu opens which shows Add Connection option.

 
 
After clicking new connection window opens.

 

Enter the server name and use your required Authentication to log on the server, after that connect to the database by selecting from drop down menu and select your database and click on Test Connection before clicking on OK button as you are best aware of that the connection is connected mode or not. 

 
 
Step 9: In this step we can drag and drop table from server explorer to dbml class designer view. After this process designer look like this.
 
 

Note: As we drag and drop the table the designer will create the connection string in  configuration file.

Step 10: Import the following name space. 
  1. using System.Linq;  
Step 11: The final step is to query to get items using LINQ to SQL. 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Web;  
  5. using System.Web.UI;  
  6. using System.Web.UI.WebControls;  
  7. using System.Data;  
  8. public partial class _Default : System.Web.UI.Page  
  9. {  
  10.     protected void Page_Load(object sender, EventArgs e)  
  11.     {  
  12.         if (!Page.IsPostBack)  
  13.         {  
  14.             gvitems.DataSource = GetItemsRecord();  
  15.             gvitems.DataBind();  
  16.   
  17.         }  
  18.   
  19.     }  
  20.   
  21.     public List<ITEM> GetItemsRecord()  
  22.     {  
  23.         BindGridViewDataContext db = new BindGridViewDataContext();  
  24.         var listitemsrecord = (from x in db.ITEMs select x).ToList<ITEM>();  
  25.         return listitemsrecord;  
  26.   
  27.     }  
  28. }  
The Final Output

 


Similar Articles