简体   繁体   中英

How to add two foreign keys in the same class (table) in EF

I'm working with EF project and I try to add two foreign keys but I have a problem when I do Add Migration.

public class Person
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public DateTime BirthDate { get; set; }
    public DateTime? DeathDate { get; set; }

    public int? FatherId { get; set; }
    public int? MotherId { get; set; }

    [ForeignKey("FatherId")]
    public virtual Person Father { get; set; }

    [ForeignKey("MotherId")]
    public virtual Person Mother { get; set; }
}

Add This code in your context

   protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<Person>()
        .HasOptional(a => a.Mother)
        .WithMany()
        .HasForeignKey(a => a.MotherId);

    modelBuilder.Entity<Person>()
        .HasOptional(a => a.Father)
        .WithMany()
        .HasForeignKey(a => a.FatherId);
}

        ```

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM