partial void DeleteLootDrop(LootDrop instance);
 partial void UpdateLootDrop(LootDrop instance);
		private void detach_LootDrops(LootDrop entity)
		{
			this.SendPropertyChanging();
			entity.LootEntry = null;
		}
 partial void InsertLootDrop(LootDrop instance);
		private void attach_LootDrops(LootDrop entity)
		{
			this.SendPropertyChanging();
			entity.LootEntry = this;
		}