开发者

Entity Framework CTP5 Code-First Mapping - Foreign Key in same table

开发者 https://www.devze.com 2023-02-14 10:52 出处:网络
How would I map something like this using the modelBuilder? Where theres a nullable foreign key referencing the same tables primary key

How would I map something like this using the modelBuilder? Where theres a nullable foreign key referencing the same tables primary key

Table: Task
taskID int pk
taskName varchar
parentTaskID int (nullable) FK

Task class:

public class Task
{
     public int taskID {get;set;}
     public string taskName {get;set;}
     public int parentTaskID {get;set;}
     public Task parentTask {get;set;}
}

...

    modelB开发者_Python百科uilder.Entity<Task>()
        .HasOptional(o => o.ParentTask)....


The following code gives you the desired schema. Note that you also need to define ParentTaskID foreign key as a nullable integer, like I did below.

public class Task
{
    public int TaskID { get; set; }
    public string TaskName { get; set; }        
    public int? ParentTaskID { get; set; }
    public Task ParentTask { get; set; }
}

public class Context : DbContext
{
    public DbSet<Task> Tasks { get; set; }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        modelBuilder.Entity<Task>()
                    .HasOptional(t => t.ParentTask)
                    .WithMany()
                    .HasForeignKey(t => t.ParentTaskID);
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号