Wednesday 1 April 2015

Self referencing association in entity framework with code first



Step1: Go to your application and Add a class (Student.cs) file to your application.

namespace Entity
{
    public class Student
    {
        public int StudentID { getset; }
        public string StudentName { getset; }
        public int? HODID { getset; }

        public Student HOD { getset; }
    }
}



Step 2: Add another class(StudentDBContext.cs)file to the project.
using System.Data.Entity;
namespace Entity
{
    public class StudentDBContext : DbContext
    {
        public DbSet<Student> Students { getset; }

        protected override void OnModelCreating(DbModelBuilder _model)
        {
           _model.Entity<Student>()
                .HasOptional(c => c.HOD)
                .WithMany()
                .HasForeignKey(c => c.HODID);

            base.OnModelCreating(_model);
        }
    }
}



Step 3: Add the web.config file for database connection string.
<connectionStrings>
  <add name="StudentDBContext"
            connectionString="server=.; database=Entity; integrated security=SSPI;"
            providerName="System.Data.SqlClient" />
</connectionStrings>


Step 4: Add a webform to your application and Drag and drop a GridView control from tool box. 

Step 5: Write the below code.
using System;
using System.Linq;
namespace Demo
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            StudentDBContext studentDBContext = new StudentDBContext();
            GridView1.DataSource = studentDBContext.Students.Select(c => new
            {
                StudentName = c.StudentName,
                HODName = c.HOD == null ?
                    "Principle" : c.HOD.StudentName
            }).ToList();
            GridView1.DataBind();
        }
    }
}



Step 6: Run your application. Entity database and Students table will be created at this time. You see that StudentID is marked as primary key and HODID is marked as foreign key.

Step 7: Insert test data using the following SQL script

Insert into Students values ('Munesh', NULL)
Insert into Students values ('Rahul', NULL)
Insert into Students values ('Micale', NULL)
Insert into Students values ('Tom', NULL)
Insert into Students values ('Ram', NULL)
Insert into Students values ('Lick', NULL)
Insert into Students values ('ABC', NULL)
Go
Update Students Set HODID  = 5 Where StudentName IN ('Ram''Rahul')
Update Students Set HODID  = 3 Where StudentName IN ('Tom','Micale')
Update Students Set HODID  = 5 Where StudentName IN ('Lick')
Update Students Set HODID  = 4 Where StudentName IN ('ABC')
GO



Now Run your application you will see that respective name and others detail will see.

Tuesday 31 March 2015

Self Referencing Tables in Entity Framework

Self-referencing table in entity framework means in order to store some hierarchical data or you can say that A self referencing table is a table where the primary key(PK) of a table is also known a foreign key.
Basically in this topic we will cover how to deal with  hierarchical data in entity framework this  hierarchical data is stored in  self referencing table.
Now we will understand this with an example . First to To SQL Server Studio and create a table ,ensure that in this table we will have one primary key and other foreign key references of this table’s primary key so we can say this table as self referencing table.
Create table Students
(
     StudentID int primary key identity,
     StudentName nvarchar(50),
     HODID int foreign key references Students(StudentID)
)

GO


After creating your table your table design will be like this.

Now insert some data to Table but remember that one row you put NULL for HODID . Initially you will table with NULL HODID.
Insert into Students values ('Munesh', NULL)
Insert into Students values ('Rahul', NULL)
Insert into Students values ('Micale', NULL)
Insert into Students values ('Tom', NULL)
Insert into Students values ('Ram', NULL)
Insert into Students values ('Lick', NULL)
Insert into Students values ('ABC', NULL)


Now Update your table For HODID and execute this below query.
Update Students Set HODID  = 5 Where StudentName IN ('Ram', 'Rahul')
Update Students Set HODID  = 3 Where StudentName IN ('Tom','Micale')
Update Students Set HODID  = 5 Where StudentName IN ('Lick')
Update Students Set HODID  = 4 Where StudentName IN ('ABC')
GO


After that your table will be look like this with data

Now go to your application and add a ADO.Net Entity DataModal  and give the connection when your entity will create will add automatically navigation Property (Students1 and Student1)  and one self-referencing association

Right click on Students1 navigation property and click properties. In this properties window Multiplicity is set to Many. So, that navigation property returns Students who are subordinates. 

Same you do with Student1 Means go to properties and set multiplicity as Zero or One So, this navigation property returns the HOD of an Student





. 

Now we want to retrieve some data from table , For example we have have a default table with some studentName and HODName.
StudentName
HODName
Munesh
Principle
Rahul
R1
Micale
M1
Tom
T1
Ram
R1
Lick
L1

Now  drag and drop a GridView control From tool box and write below cde  in the code-behind file at  Page_Load event.
protected void Page_Load(object sender, EventArgs e)
{
    StudentDBContext _student = new StudentDBContext();
    GridView1.DataSource = _student.Students.Select(c => new
    {
        StudentName = c.StudentName,
        HODName = c.Student == null ? "Principle"
                        : c.Student1.StudentName
    }).ToList();
    GridView1.DataBind();
}

 Now run your application you will see this data in Gridview.

C# program Selection Sorting

Selection sort is a straightforward sorting algorithm. This algorithm search for the smallest number in the elements array and then swap i...