partial void DeleteReply(Reply instance);
 partial void UpdateReply(Reply instance);
		private void detach_Replies(Reply entity)
		{
			this.SendPropertyChanging();
			entity.Question = null;
		}
 partial void InsertReply(Reply instance);
		private void attach_Replies(Reply entity)
		{
			this.SendPropertyChanging();
			entity.Question = this;
		}