使用Fluent API的外键-代码优先

本文关键字:代码 Fluent API 使用 | 更新日期: 2023-09-27 18:08:52

我正在尝试使用FluentAPI建立2个类的外键,并且在实现它的方式上有点困惑。

ApplicationUser使用ASP。. NET身份模型,UserId为字符串

public class ApplicationUser : IdentityUser
{
     public virtual List<UserProduct> Orders { get; set; }
}

Product,在ProductIDProductCategoryID列上有一个复合键

public class Product 
{
    public int ProductID { get; set; }
    public string ProductCategoryID { get; set; }
    public virtual List<UserProduct> Orders { get; set; }
    ...
}

ApplicationUserProduct表之间有多对多关系的类UserProduct

public partial class UserProduct
{
    public string UserId { get; set; }
    public int ProductID { get; set; }
    public string ProductCategoryID { get; set; }
    public virtual ApplicationUser User { get; set; }
    public virtual Product Product { get; set; }
}

FluentAPI代码看起来像

 modelBuilder.Entity<Product>().Property(t => t.ProductID).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
 modelBuilder.Entity<Product>().HasKey(x => new { x.ProductID, x.ProductCategoryID  });
 modelBuilder.Entity<UserProduct>().HasKey(x => new {x.UserId, x.ProductID, x.ProductCategoryID});

如何建立UserProductApplicationUserProduct的外键关系

使用Fluent API的外键-代码优先

您可以将id属性(例如OrderId)添加到UserProduct类中,并使用此代码通过外键连接实体。

modelBuilder.Entity<UserProduct>()
            .HasRequired(x => x.User) 
            .WithMany(u => u.Orders) 
            .HasForeignKey(x => x.OrderId);