コード例 #1
0
 private bool FilterChildren(NullableFKChild entity)
 {
     return (entity.ParentID == this.ID);
 }
コード例 #2
0
 private void AttachChildren(NullableFKChild entity)
 {
     entity.Parent = this;
 }
コード例 #3
0
 private void DetachChildren(NullableFKChild entity)
 {
     entity.Parent = null;
 }
コード例 #4
0
 private bool FilterChild(NullableFKChild entity)
 {
     return (entity.ParentID_Singleton == this.ID);
 }