📜  Entity Framework-索引

📅  最后修改于: 2020-11-21 07:20:54             🧑  作者: Mango


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

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

  • 您可以使用Index属性将索引添加到数据库中,并覆盖默认的“唯一”和“群集”设置,以获得最适合您的方案的索引。

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

public partial class Course {

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

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

}

上面创建的密钥是非唯一的,非集群的。有重载可以覆盖这些默认值-

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

  • 同样,您还可以通过指定IsUnique = true将索引设为唯一索引

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

public partial class Course {

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

   [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 Enrollments { get; set; }
}

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