有下面的类,并尝试在数据库中查找记录返回错误.
使用C#,MVC 4,Entity Framework 4和sql Server 2012数据库.
使用C#,MVC 4,Entity Framework 4和sql Server 2012数据库.
Unable to determine the principal end of an association between the types 'FlexApp.Models.Model.Usuario' and 'FlexApp.Models.Model.Usuario'. The principal end of this association must be explicitly configured using either the relationship fluent API or data annotations.
类
public class Usuario { [Key] public int UsuarioID { get; set; } public string Nome { get; set; } public int UsuCad { get; set; } public int UsuAlt { get; set; } [ForeignKey("UsuCad")] public virtual Usuario UsuarioCad { get; set; } [ForeignKey("UsuAlt")] public virtual Usuario UsuarioAlt { get; set; } }
DataBase FK
alter table USUARIO add constraint USUARIO_fk01 foreign KEY(UsuCad) REFERENCES USUARIO(UsuarioID); alter table USUARIO add constraint USUARIO_fk02 foreign KEY(UsuAlt) REFERENCES USUARIO(UsuarioID);
解决方法
答复
经过大量搜索,我找到了关于使用InverseProperty的提示
然后代码看起来像这样.这个属性ForeignKey它是挂载链接和属性InverseProperty来通知该字段依赖于这个其他阵营,反转外键.
谢谢您的帮助
public class Usuario { [Key] public int UsuarioID { get; set; } public string Nome { get; set; } public int UsuCad { get; set; } public int UsuAlt { get; set; } [ForeignKey("UsuCad")] [InverseProperty("UsuarioID")] public virtual Usuario UsuarioCad { get; set; } [ForeignKey("UsuAlt")] [InverseProperty("UsuarioID")] public virtual Usuario UsuarioAlt { get; set; } }