partial void DeleteComment(Comment instance);
partial void UpdateComment(Comment instance);
partial void InsertComment(Comment instance);
private void detach_Comments(Comment entity) { this.SendPropertyChanging(); entity.Board = null; }
private void attach_Comments(Comment entity) { this.SendPropertyChanging(); entity.Board = this; }
private void detach_Comments(Comment entity) { this.SendPropertyChanging(); entity.UserAccount = null; }