Count rows within partition in Azure table storage
问题 I've seen various questions around SO about how to get the total row count of an Azure storage table, but I want to know how to get the number of rows within a single partition. How can I do this while loading a minimal amount of entity data into memory? 回答1: As you may already know that there's no Count like functionality available in Azure Tables. In order to get the total number of entities (rows) in a Partition (or a Table), you have to fetch all entities. You can reduce the response