假设我有以下实体:
public class Calendar{
public int ID{get;set;}
public ICollection<Day> Days { get; set; }
}
public class Day{
public int ID{get;set;}
public DateTime Date{get;set;}
public int CalendarID{get;set;}
}
这是与CalendarID
作为外键的一对多关系。问题是我还想确保每个日历在每个日历中只存在一次。也就是说,没有两天同时具有相同的Date
和相同的CalendarID
。在原始SQL中,我可以通过以下方式执行此操作:
ALTER TABLE Days
ADD CONSTRAINT UN_Day UNIQUE ([Date],CalendarID);
但是,Entity Framework在自动创建表时不会知道我想要这个。如何在流畅的API中指定它?
答案 0 :(得分:2)
见Configuring an Index on one or more properties。
在您的地图类中,假设它从EntityTypeConfiguration<Day>
延伸,那么您需要添加using System.Data.Entity.Infrastructure.Annotations;
并执行以下操作:
this.Property(x => x.Date)
.HasColumnAnnotation(IndexAnnotation.AnnotationName,
new IndexAnnotation(new IndexAttribute("UN_Day", 0) { IsUnique = true }));
this.Property(x => x.CalendarID)
.HasColumnAnnotation(IndexAnnotation.AnnotationName,
new IndexAnnotation(new IndexAttribute("UN_Day", 1) { IsUnique = true }));