is there a way to list all partitionkey from a table?

Answered is there a way to list all partitionkey from a table?

  • 2012年4月27日 7: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日 7: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日 8:05
    •  
  • 2012年4月27日 7: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日 8:05
    •