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