Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
示例#1
0
 private void detach_ItemCategories(ItemCategory entity)
 {
     this.SendPropertyChanging();
     entity.Category = null;
 }
示例#2
0
 private void attach_ItemCategories(ItemCategory entity)
 {
     this.SendPropertyChanging();
     entity.Category = this;
 }
示例#3
0
 partial void UpdateItemCategory(ItemCategory instance);
示例#4
0
 partial void DeleteItemCategory(ItemCategory instance);
示例#5
0
 partial void InsertItemCategory(ItemCategory instance);