private void DetachBook(Book entity) { entity.Author = null; }
private void AttachBook(Book entity) { entity.Author = this; }