c# – 无法确定类型之间关联的主要结尾 – 实体框架错误,同一类之间的类关系

前端之家收集整理的这篇文章主要介绍了c# – 无法确定类型之间关联的主要结尾 – 实体框架错误,同一类之间的类关系前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有下面的类,并尝试在数据库中查找记录返回错误.
使用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; }
}
原文链接:https://www.f2er.com/csharp/244908.html

猜你在找的C#相关文章