partial void DeleteItems(Items instance);
 partial void UpdateItems(Items instance);
 private void detach_Items(Items entity)
 {
     this.SendPropertyChanging();
     entity.Category = null;
 }
 partial void InsertItems(Items instance);
 private void attach_Items(Items entity)
 {
     this.SendPropertyChanging();
     entity.Category = this;
 }