partial void DeleteVote(Vote instance);
 partial void UpdateVote(Vote instance);
		private void detach_Votes(Vote entity)
		{
			this.SendPropertyChanging();
			entity.Post = null;
		}
 partial void InsertVote(Vote instance);
		private void attach_Votes(Vote entity)
		{
			this.SendPropertyChanging();
			entity.Post = this;
		}