之間的關聯的主要結束我使用Entity Framework
這裏是我的實體模型:無法確定類型的「X」和「X」
Public class Document
{
Public int Id { get; set; }
Public Document Parent { get; set; }
}
,當你看到它有一個self-reference
屬性。
現在我想要添加另一個self-reference
屬性是這樣的:
Public class Document
{
Public int Id { get; set; }
Public Document Parent { get; set; }
Public Document SrcDocument { get; set; }
}
但不幸的是,我遇到以下錯誤:
Unable to determine the principal end of an association between the types 'Document' and 'Document'. The principal end of this association must be explicitly configured using either the relationship fluent API or data annotations.
難道你想與一個一對多的關係? –
有些是如何,但它不起作用? – Reza
是否會編寫任何代碼來定義這些關係? –