实体框架 - 索引
索引是基于表和视图的磁盘数据结构。在大多数情况下,索引使数据检索更快、更高效。但是,使用索引重载表或视图可能会对其他操作(如插入或更新)的性能产生不利影响。
索引是实体框架中的新功能,您可以通过减少从数据库查询数据所需的时间来提高 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; } }
Index 属性可用于在数据库中创建唯一索引。但是,这并不意味着 EF 在处理关系等时能够推断出列的唯一性。此功能通常被称为对"唯一约束"的支持。