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