Is there a simple way to get the EntityName as a string so that I can use: adapter.DeleteEntitiesDirectly(BasketEntity.EntityName.toString(), bucket);
instead of hard-coding the entity name: adapter.DeleteEntitiesDirectly("BasketEntity", bucket);
adapter.DeleteEntitiesDirectly(EntityType.BasketEntity.ToString(), bucket);