親の「Person」にアクセスできるように、「登録」クラスにナビゲーション プロパティを追加しようとしています。
理想的には、追加できますがPublic Overrideable Property ParentPerson as Person
、関連付けの原則的な終了について不平を言うため、これを機能させることができないようです。
Public Class Person
<Required()>
Public Property ID As Integer
<Required()>
<StringLength(150)>
Public Property Firstname As String
<Required()>
<StringLength(150)>
Public Property Lastname As String
Public Overridable Property Registration As Registration
End Class
Public Class Registration
<Required()>
Public Property ID As Integer
Public Property RegistrationDate As Date
Public Overridable Property Sessions As List(Of RegistrationSession)
End Class