partial void DeleteLootEntry(LootEntry instance);
 partial void UpdateLootEntry(LootEntry instance);
		private void detach_LootEntries(LootEntry entity)
		{
			this.SendPropertyChanging();
			entity.Loot = null;
		}
 partial void InsertLootEntry(LootEntry instance);
		private void attach_LootEntries(LootEntry entity)
		{
			this.SendPropertyChanging();
			entity.Loot = this;
		}