有效的排序這是我的模型無法確定相關的操作
public string Content { get; set; }
public Faq Reply { set; get; }
public int? ReplyId { get; set; }
public ICollection<Faq> Children { get; set; }
[ForeignKey("WriterId")]
public virtual UserProfile Writer { get; set; }
public virtual int? WriterId { get; set; }
public Status Status { get; set; }
[ForeignKey("DepartmentId")]
public virtual Department Department { get; set; }
public virtual int? DepartmentId { get; set; }
這是我的錯誤
無法確定相關的操作有效的排序。由於外鍵約束,模型要求或商店生成的值,可能會存在依存關係。
我有這個問題 - 這個問題是在INSERT SP的映射是不正確的。 – Ruskin
這是什麼課,一個'Faq'? – Shimmy
如果上述解決方案沒有幫助,並且您有多個導航,請參閱http://stackoverflow.com/questions/21110614/more-than-one-navigation-to-the-same-entity/21857936 – Stefan