partial void DeleteExample(Example instance);
 partial void UpdateExample(Example instance);
 partial void InsertExample(Example instance);
		private void detach_Examples(Example entity)
		{
			this.SendPropertyChanging();
			entity.ReferenceSet = null;
		}
		private void detach_Examples(Example entity)
		{
			this.SendPropertyChanging();
			entity.Component = null;
		}
		private void attach_Examples(Example entity)
		{
			this.SendPropertyChanging();
			entity.Component = this;
		}