示例#1
0
 private void DetachBook(Book entity)
 {
     entity.Author = null;
 }
示例#2
0
 private void AttachBook(Book entity)
 {
     entity.Author = this;
 }