Click here to Skip to main content
15,884,625 members
Articles / Web Development / ASP.NET

Linq: Relationship Code Sample

Rate me:
Please Sign up or sign in to vote.
4.70/5 (11 votes)
16 May 2011CPOL 28.4K   852   19   4
How to Implement Relationship in LINQ using C# and ASP.NET for Beginners

Introduction

This sample shows how to implement Relationship Using LINQ in C# and ASP.NET for a beginner.

How To Do

  1. Create an ASP.NET Web application using C# in Visual Studio 2008.

    File-> New -> Project -> ASP.NET Web Application

    Image 1

    Image 2

  2. Add a database file to app_data - "student.mdf".
    1. Right Click App_Data, Add->New Item->Data->SQL Server DataBase.
    2. Give name Student.mdf.

      Image 3

    3. Go to the Server Explore, Expand Student DataBase, In Tables, Add New Table
    4. Add two tables, Student and Mark.

      Table: StudentColumns: StudentID int, Name nvarchar(50), Age int

      Table: Mark
      Columns: StudentID int, Class nvarchar(50), Mark int

      Add some sample data for the Student and Mark tables, (student id should be same in Mark and Student table)

      For that, right click the table and click show table data, you can add data here.

      Image 4

  3. LINQ to SQL

    Right click the solution, add New Item->Data-> Linq to SQL Class.

  4. Give Name "LinqToStudents.dbml".

    Image 5

  5. Pick SQL Server explore, drag the two tables to the window:

    Image 6

    Save the Project.

  6. Drag a DataGrid view to the Default.aspx Page:

    Image 7

  7. Use the below code snippets pageload of the project:
    C#
    LinqToStudentsDataContext linqStud = new LinqToStudentsDataContext();
    var query = from s in linqStud.Students
    join h in linqStud.Marks on s.StudentID equals h.StudentID 
    select new {h.StudentID ,s.Name, };      
    C#
    GridView1.DataSource = query; 
    GridView1.DataBind(); 

    Image 8

Run the project by pressing F5.

History

  • Release 1

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Banque Saudi Fransi
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
After205020-May-11 2:55
After205020-May-11 2:55 
GeneralRe: My vote of 2 Pin
ak9937218-Sep-12 9:46
ak9937218-Sep-12 9:46 
GeneralNice article for begining LinQ Pin
Johnson.Sebastian/353771918-May-11 21:42
Johnson.Sebastian/353771918-May-11 21:42 
GeneralRealy useful article for linq developer Pin
pcm_it16-May-11 21:18
pcm_it16-May-11 21:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.