EF Core - 复合主键删除一个索引

EF Core - composite primary key removes one index

我有这个实体:

[Table("order")]
public class Order
{
    [Key]
    [Column("id")]
    public Guid Id { get; set; }

    [MaxLength(128)]
    [Column("description")]
    public string Description { get; set; }

    [ForeignKey("Student")]
    [Column("student_id")]
    public Guid StudentId { get; set; }

    [ForeignKey("Employer")]
    [Column("employer_id")]
    public Guid EmployerId { get; set; }

    [ForeignKey("Customer")]
    [Column("customer_id")]
    public Guid CustomerId { get; set; }

    public virtual Guid Student { get; set; }
    public virtual Guid Employer { get; set; }
    public virtual Guid Customer { get; set; }
}

然后我看到 DbContext 的下一个快照:

modelBuilder.Entity("DataInterface.Models.Order", b =>
{
    b.Property<Guid>("Id")
        .ValueGeneratedOnAdd()
        .HasColumnName("id");

    b.Property<string>("Description")
        .HasColumnName("description")
        .HasMaxLength(128);

    b.Property<Guid>("StudentId")
        .HasColumnName("student_id");

    b.Property<Guid>("EmployerId")
        .HasColumnName("employer_id");

    b.Property<Guid>("CustomerId")
        .HasColumnName("customer_id");

    b.HasKey("Id");

    b.HasIndex("StudentId");

    b.HasIndex("EmployerId");

    b.HasIndex("CustomerId");

    b.ToTable("order");
});

你怎么能看到 - 一切都很好。但是我需要创建一个组合键并删除主键。所以,让我们开始吧。我的实体的新代码(没有 Id 主键):

[Table("order")]
public class Order
{
    [MaxLength(128)]
    [Column("description")]
    public string Description { get; set; }

    [ForeignKey("Student")]
    [Column("student_id")]
    public Guid StudentId { get; set; }

    [ForeignKey("Employer")]
    [Column("employer_id")]
    public Guid EmployerId { get; set; }

    [ForeignKey("Customer")]
    [Column("customer_id")]
    public Guid CustomerId { get; set; }

    public virtual Guid Student { get; set; }
    public virtual Guid Employer { get; set; }
    public virtual Guid Customer { get; set; }
}

我将新行为添加到上下文的 OnModelCreating 方法中:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.Entity<Order>()
        .HasKey(x => new { x.StudentId, x.EmployerId, x.CustomerId });
}

当我添加新迁移时,我看到 StudentId 的索引已被删除。我不明白为什么?我 DbContext 的新快照:

modelBuilder.Entity("DataInterface.Models.Order", b =>
{
    b.Property<Guid>("Id")
        .ValueGeneratedOnAdd()
        .HasColumnName("id");

    b.Property<string>("Description")
        .HasColumnName("description")
        .HasMaxLength(128);

    b.Property<Guid>("StudentId")
        .HasColumnName("student_id");

    b.Property<Guid>("EmployerId")
        .HasColumnName("employer_id");

    b.Property<Guid>("CustomerId")
        .HasColumnName("customer_id");

    b.HasKey("StudentId", "EmployerId", "CustomerId");

    b.HasIndex("EmployerId");

    b.HasIndex("CustomerId");

    b.ToTable("order");
});

为什么删除了三个索引之一?为什么 b.HasIndex("StudentId"); 行被删除了?怎么了?

注意:我没有看到另一个表中两个字段的复合键有这个问题。

主键由索引强制执行。

StudentId 是该索引中的第一列。

它不需要在其上定义另一个索引(这样的索引几乎肯定也毫无意义,因为 PK 索引很可能是 table 的聚集索引,非聚集索引包含PK列在他们的叶子)

StudentId 上的附加索引是多余的。由于这是主键中的第一列,因此 StudentId 上的查找可以简单地使用其索引。类似地,对 StudentId+EmployerId 的查找也可以执行相同的操作。

有趣的是,EF Core 以前不是这种情况,并且创建了两个索引。现在索引被删除的事实意味着这种行为已经 fixed/optimized.