我正在尝试建立一对一的关系,导航属性位于一侧(MVC4、EF5、代码优先)。
public class User {
public int UserId { get; set; } //PK
public int RankId { get; set; } //FK
public virtual Rank { get; set; } //Navigation
}
public class Rank {
public int RankId { get; set; }
}
配置:
public class RankConfiguration : EntityTypeConfiguration<Rank>
{
public RankConfiguration()
{
HasKey(e => e.RankId);
Property(e => e.RankId)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
}
}
public class UserConfiguration : EntityTypeConfiguration<User>
{
public UserConfiguration ()
{
// PK
HasKey(e => e.UserId);
Property(e => e.RankId)
.IsRequired();
HasRequired(e => e.Rank)
.WithRequiredDependent()
.WillCascadeOnDelete(true);
}
}
对于我所看到的(以及我所知道的很少),db 是正确生成的,但我收到了这个错误:
ReferentialConstraint 中的依赖属性映射到存储生成的列。列:“用户 ID”。
在第一次尝试中,我正在考虑创建一个连接表(参考此处EF5 Fluent API one-to-one without navigator),不知道是否是个好主意,但我无法使用 fluent API。
我不知道为什么以及出了什么问题..有什么帮助吗?提前谢谢了
更新
第一次尝试@soadyp评论 后,我尝试配置一个一对一的连接表
HasRequired(e => e.Rank)
.WithRequiredDependent()
.Map(m =>
{
m.ToTable("UserRank");
m.MapKey("RankId");
})
.WillCascadeOnDelete(true);
但是当我尝试迁移时出现此错误:
The specified table 'UserRank' was not found in the model.
Ensure that the table name has been correctly specified.
第二次尝试阅读此http://weblogs.asp.net/manavi/archive/2011/04/14/associations-in-ef-4-1-code-first- 后,我可能正在做一个简单的工作太复杂了part-3-shared-primary-key-associations.aspx我就是这样改的
HasRequired(e => e.Rank)
.WithOptional()
.WillCascadeOnDelete(true);
一切都很好,但是 UserId PK 没有设置为身份(当我插入一行时有明显的问题)。如果我将其指定为身份:
Property(e => e.UserId)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
我收到以下错误:
Cascading foreign key 'FK_dbo.Users_dbo.Ranks_UserId' cannot be created where
the referencing column 'Users.UserID' is an identity column.
Could not create constraint. See previous errors.