Reputation: 95
I have an a table Azure Table Storage where the various rows have a completely different set of properties.
Is there an existing method to query the table so that I can get a list of all the property/column names or do I just have to pull back the all the rows and parse it myself?
Thanks.
Upvotes: 2
Views: 478
Reputation: 60133
No, there's no way to get the list short of retrieving all the entities (rows).
Upvotes: 1