Friday, August 1, 2014

Different way of creating keys in EFCodeFirst

Recently I have been playing with Entity Framework Code First and I like it a lot. There are plenty of features given and you can configure all that stuff with code. I have already written couple of post for Entity Framework Code First.

Different way of mapping in EFCodeFirst
Entity Framework code first and Inheritance–Table per hierarchy
Entity framework code first and inheritance- Table Per Type

As you EFCodeFirst generate database table based on the configuration defined in classes. Today we are going to learn about how we can create key with different configurations.

By default configuration of Primary Key:


By default Entity framework any field determine based on field name. So any first field which has Id in it’s name will be treated as primary key and it will auto increment primary key. So let’s take example of following class.
public class Student
{
    public int StudentId { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Standard { get; set; }
}
Here it will create StudentId as primary key.

Using key attribute at model classes to define primary key:

public class Student
{
    [Key]
    public int StudentId { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Standard { get; set; }
}

Using ModelCreating event to define primary key:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<Student>().HasKey(t => t.StudentId);
    base.OnModelCreating(modelBuilder);
}

Creating composite primary with ModelCreating Event in DbContext:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<Student>().HasKey(t =>new { t.StudentId, t.FirstName});
    base.OnModelCreating(modelBuilder);
}

Creating a primay key without Identity using ModelCreating Event:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilderEntity<Student>()
        .Property(s => s.StudentId)
        .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
}

Using foreign key attribute to generate foreign key in Model classes:

public class Student
{
    [Key]
    public int StudentId { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Standard { get; set; }

    [ForeignKey("DepartmentId")]
    public DepartMent Department { get; set; }
}

public class DepartMent
{
    [Key]
    public int DeapartmentId { get; set; }

    public string DepartmentName { get; set; }
}

That's it. In this blog post I have written basic configuration of keys. Hope you like it. Stay tuned for more!!
Share:

0 comments:

Post a Comment

Your feedback is very important to me. Please provide your feedback via putting comments.

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews