Showing posts with label LINQ to SQL implementation. Show all posts
Showing posts with label LINQ to SQL implementation. Show all posts

Thursday, September 16, 2010

LINQ to SQL implementation step by step

LINQ to SQL implementation step by step

Right click on project solution => Add New Item =>
Select DBML class, give some appropriate name and add in project.

now open your server explorer and add some database. => drag some table on the dbml file.

// this is the class generated by hr.dbml
HRDataContext hr = new HRDataContext();

// get any one table
var q = from a in hr.GetTable()
select a;

// bind the table in datagrid
GridView1.DataSource = q;
GridView1.DataBind();