2

当我使用外键添加复合索引时,我注意到 EF 删除了外键上的索引。所以我需要更好地理解复合索引:)

我使用这个答案添加了复合索引并生成了我的 EF 代码第一个迁移文件。

添加复合索引:

this.Property(x => x.Name)
    .HasUniqueIndexAnnotation("IX_UniqueNamePerKey", 0);
this.Property(x => x.TeacherId)
    .HasUniqueIndexAnnotation("IX_UniqueNamePerKey", 1);

迁移文件:

public partial class CompositeIndex : DbMigration
{
    public override void Up()
    {
        DropIndex("dbo.Course", new[] { "TeacherId" });
        CreateIndex("dbo.Course", new[] { "Name", "TeacherId" }, unique: true, name: "IX_UniqueNamePerKey");
    }

    // omitted...
}

我不明白的是为什么它需要删除我的外键上的索引。据我所知,一个属性可以毫无问题地用于多个索引。那么它为什么会被丢弃呢?这不会使连接变慢吗?

模型:

public class Course
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int TeacherId { get; set; }
    public virtual Teacher { get; set; }
}

public class Teacher
{
    public int Id { get; set; }
    public ICollection<Course> Courses { get; set; }
}

映射:

public class CourseMap : EntityTypeConfiguration<Course>
{
    protected CourseMap()
        {
            // Primary key
            this.HasKey(t => t.Id);

            // Properties
            this.Property(x => x.Name)
                .IsRequired()
                // below code was added
                .HasUniqueIndexAnnotation("IX_UniqueNamePerKey", 0);
            this.Property(x => x.ForeignKeyId)
                .HasUniqueIndexAnnotation("IX_UniqueNamePerKey", 1);

            // Table & Column Mappings
            this.ToTable("Course");
        }
}
4

1 回答 1

1

我得出的结论是它是 EF 中的错误。

但是,在我的特定情况下,一种解决方法是在复合索引中首先创建外键。作为第一个作为正常索引。至少如果我没看错话。

于 2014-09-26T11:56:24.753 回答