实体框架多列作为主键

这些是我的简化域类。

public class ProductCategory
{
public int ProductId { get; set; }
public int CategoryId { get; set; }


public virtual Product Product { get; set; }
public virtual Category Category { get; set; }
}


public class Product
{
public int Id { get; set; }
public string Name { get; set; }
}


public class Category
{
public int Id { get; set; }
public string Name { get; set; }
public int? ParentCategoryId { get; set;}
}

这是我的地图课,但是没用。

public class ProductCategoryMap : EntityTypeConfiguration<ProductCategory>
{
public ProductCategoryMap()
{
ToTable("ProductCategory");
HasKey(pc => pc.ProductId);
HasKey(pc => pc.CategoryId);
}
}

我应该如何映射这些类来提供,以便一个产品可以在多个类别中看到?

55947 次浏览

使用匿名类型对象而不是两个分开的语句:

HasKey(pc => new { pc.ProductId, pc.CategoryId });

来自 Microsoft Docs: EntityTypeConfiguration. HasKey 方法

如果主键由多个属性组成,则指定包含属性的匿名类型。例如,在 C # t => new { t.Id1, t.Id2 }和 VisualBasic 中。网络 Function(t) New With { t.Id1, t.Id2 }