partial void DeleteShare(Share instance);
 partial void UpdateShare(Share instance);
		private void detach_Shares(Share entity)
		{
			this.SendPropertyChanging();
			entity.Profile = null;
		}
 partial void InsertShare(Share instance);
		private void attach_Shares(Share entity)
		{
			this.SendPropertyChanging();
			entity.Profile = this;
		}