Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
コード例 #1
0
 partial void DeleteAnswer(Answer instance);
コード例 #2
0
 partial void UpdateAnswer(Answer instance);
コード例 #3
0
 partial void InsertAnswer(Answer instance);
コード例 #4
0
 private void detach_Answer(Answer entity)
 {
     this.SendPropertyChanging();
     entity.ResponseSet = null;
 }
コード例 #5
0
 private void detach_Answer(Answer entity)
 {
     this.SendPropertyChanging();
     entity.Question = null;
 }
コード例 #6
0
 private void attach_Answer(Answer entity)
 {
     this.SendPropertyChanging();
     entity.Question = this;
 }