Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Junction table with additional columns in EF4 CTP4 Code First

Given this sql schema:

create table [dbo].[Courses_Students] (
    [DummyColumn] [int] null,
    [CourseId] [int] not null,
    [StudentId] [int] not null,
    primary key ([CourseId], [StudentId])
);

How do I define the composite primary key and the additional columns in the EntityConfiguration?

like image 998
Ismael Avatar asked Nov 08 '10 13:11

Ismael


1 Answers

You need to declare a class Courses_Students

public class Courses_Students
{
    [Key]
    public int CourseId { get; set; }
    public int StudentId { get; set; }
    public int DummyColumn { get; set; }

    public virtual ICollection<Course> Courses { get; set; }
    public virtual ICollection<Student> Students { get; set; }
}

The Key on CourseId, is to prevent a compilation error, you will override it next.

Then, in your DbContext class, you override OnModelCreating like so :

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.Entity<Courses_Students>()
        .HasKey(e => new { e.CourseId, e.StudentId })
        .MapSingleType()
        .ToTable("Courses_Students");
}
like image 182
Christian Lavallee Avatar answered Oct 29 '22 03:10

Christian Lavallee