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;
		}