Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
コード例 #1
0
 partial void DeleteBug(Bug instance);
コード例 #2
0
 partial void UpdateBug(Bug instance);
コード例 #3
0
		private void detach_Bugs(Bug entity)
		{
			this.SendPropertyChanging();
			entity.Severity = null;
		}
コード例 #4
0
 partial void InsertBug(Bug instance);
コード例 #5
0
		private void attach_Bugs(Bug entity)
		{
			this.SendPropertyChanging();
			entity.Severity = this;
		}