Aaron
Aaron

Reputation: 95

Azure Table Property/Column list

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

Answers (1)

user94559
user94559

Reputation: 60133

No, there's no way to get the list short of retrieving all the entities (rows).

Upvotes: 1

Related Questions