我有两个具有一对一关系的实体,其中目标实体主键和外键相同。这是两个实体及其流畅的映射。
public class Register
{
public int Id { get; set; }
public string Number { get; set; }
// N.B: Here I can't have this virtual property for my project dependencies.
//public virtual CustomerDisplay CustomerDisplay { get; set; }
}
public class CustomerDisplay
{
public int RegisterId { get; set; }
public double ReceiptViewPercent { get; set; }
public virtual Register Register { get; set; }
}
public class RegisterConfiguration : EntityConfig<Register>
{
public RegisterConfiguration(bool useIdentity, bool sqlServerCe)
: base(sqlServerCe)
{
this.HasKey(t => t.Id);
if (!useIdentity)
{
Property(d => d.Id).IsRequired().HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
}
this.Property(t => t.Number).IsRequired().HasMaxLength(20);
}
}
public class CustomerDisplayConfiguration: EntityConfig<CustomerDisplay>
{
public CustomerDisplayConfiguration(bool sqlServerCe)
: base(sqlServerCe)
{
this.HasKey(t => t.RegisterId);
this.HasRequired(t => t.Register).WithMany().HasForeignKey(d => d.RegisterId).WillCascadeOnDelete(false);
}
}
我收到以下错误:
我在stackoverflow中看到了很多相关的问题,但没有找到我的解决方案。这个与我的问题最匹配:
How to declare one to one relationship ...
任何人都可以告诉我如何摆脱这个问题。感谢
答案 0 :(得分:3)
再次添加CustomerDisplay
导航属性:
public class Register
{
public int Id { get; set; }
public string Number { get; set; }
public virtual CustomerDisplay CustomerDisplay { get; set; }
}
按照我的说明配置关系:
this.HasRequired(t => t.Register).WithOptional(r=>r.CustomerDisplay);
请注意,您无需使用HasForeignKey
来指定CustomerDisplay.CustomerId
是FK。这是因为Entity Framework要求将依赖项的主键用作外键。由于没有选择,Code First会为您推断出这一点。
如果您无法将CustomerDisplay
导航属性添加到Register
类,那么我建议您创建单向一对一关系。使用此配置:
this.HasRequired(t => t.Register);
这足以告诉EF谁是校长,谁是你们关系中的依赖实体。