partial void DeleteBlogReview(BlogReview instance);
 partial void UpdateBlogReview(BlogReview instance);
		private void detach_BlogReviews(BlogReview entity)
		{
			this.SendPropertyChanging();
			entity.Blog = null;
		}
 partial void InsertBlogReview(BlogReview instance);
		private void attach_BlogReviews(BlogReview entity)
		{
			this.SendPropertyChanging();
			entity.Blog = this;
		}