Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
		private void detach_Profiles(Profile entity)
		{
			this.SendPropertyChanging();
			entity.Visitor = null;
		}
		private void attach_Profiles(Profile entity)
		{
			this.SendPropertyChanging();
			entity.Visitor = this;
		}
 partial void UpdateProfile(Profile instance);
 partial void DeleteProfile(Profile instance);
 partial void InsertProfile(Profile instance);