Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
コード例 #1
0
 partial void DeletePost(Post instance);
コード例 #2
0
 public PostDecorator(Post post)
 {
     this.post = post;
 }
コード例 #3
0
 partial void UpdatePost(Post instance);
コード例 #4
0
 partial void InsertPost(Post instance);
コード例 #5
0
		private void detach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.PKCategory = null;
		}
コード例 #6
0
		private void attach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.PKCategory = this;
		}
コード例 #7
0
		private void detach_Posts(Post entity)
		{
			this.SendPropertyChanging();
			entity.GlobalPrikaz = null;
		}