is there a way to list all partitionkey from a table?
-
2012年4月27日 上午 07:08
if i have a table... have a lots of partition...
is there a way i can perform a query to LIST all partition key (unique) from a table?
Thanks
所有回覆
-
2012年4月27日 上午 07:35
No. You can enumerate all entities (and figure out the set of partition keys from there), but there's no way to just enumerate the partition keys.
I'd recommend keeping track of them yourself (at the time you write the entities) if you're going to need this.
- 已標示為解答 shrimpy 2012年4月27日 上午 08:05
-
2012年4月27日 上午 07:47
Adding to Steve's response: As Steve mentioned that you would need to enumerate all entities and then figure out unique PartitionKeys. However if you use query projection and only fetch just the PartitionKeys ($select=PartitionKey), your response size will be much more smaller than fetching all attributes of your entities. Not sure about the performance when you fetch only few attributes though.
- 已標示為解答 shrimpy 2012年4月27日 上午 08:05

