实体框架 – 索引
实体框架 – 索引
索引是一种基于表和视图的磁盘数据结构。在大多数情况下,索引使数据检索更快更有效。但是,使用索引重载表或视图可能会令人不快地影响其他操作(例如插入或更新)的性能。
-
索引是实体框架中的新功能,您可以通过减少从数据库查询数据所需的时间来提高 Code First 应用程序的性能。
-
您可以使用Index属性向数据库添加索引,并覆盖默认的Unique和Clustered设置以获得最适合您的方案的索引。
让我们看一下下面的代码,其中在 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 在处理关系等时就能够推理列的唯一性。这个特性通常被称为对“唯一约束”的支持。