实体框架 - 索引


索引是基于表和视图的磁盘数据结构。在大多数情况下,索引使数据检索更快、更高效。但是,使用索引超载表或视图可能会影响其他操作(例如插入或更新)的性能。

  • 索引是实体框架中的新功能,您可以通过减少从数据库查询数据所需的时间来提高 Code First 应用程序的性能。

  • 您可以使用“索引”属性向数据库添加索引,并覆盖默认的“唯一”“聚集”设置以获得最适合您的场景的索引。

我们看一下下面的代码,其中在Course类中为CourseID添加了Index属性。

public partial class Course {

   public Course() {
      this.Enrollments = new HashSet<Enrollment>();
   }

   [Index]
   public int CourseID { get; set; }
   public string Title { get; set; }
	
   public int Credits { get; set; }
   public byte[] VersionNo { get; set; }
	
   public virtual ICollection<Enrollment> Enrollments { get; set; }

}

上面创建的密钥是非唯一的、非聚集的。有重载可用于覆盖这些默认值 -

  • 要使索引成为聚集索引,需要指定 IsClustered = true

  • 同样,您也可以通过指定 IsUnique = true 使索引成为唯一索引

让我们看一下以下 C# 代码,其中索引是聚集的且唯一的。

public partial class Course {

   public Course() {
      this.Enrollments = new HashSet<Enrollment>();
   }

   [Index(IsClustered = true, IsUnique = true)]
   public int CourseID { get; set; }
   public string Title { get; set; }
	
   public int Credits { get; set; }
   public byte[] VersionNo { get; set; }
	
   public virtual ICollection<Enrollment> Enrollments { get; set; }
}

索引属性可用于在数据库中创建唯一索引。但是,这并不意味着 EF 在处理关系等时能够推理出列的唯一性。此功能通常称为对“唯一约束”的支持。