65

这些是我的简化域类。

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);
    }
}

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

4

1 回答 1

131

使用匿名类型对象而不是 2 个单独的语句:

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

来自 Microsoft Docs:EntityTypeConfiguration.HasKey 方法

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

于 2013-03-16T21:04:38.547 回答