Eric Yin
Eric Yin

Reputation: 8973

Wrap Multiple Azure Table Queries in One HTTP Shot

I need to query Azure Table Storage multiple times from different tables then combine all results to output HTTP page.

Since the query is not related, means no particular order, so can I wrap all queries in one HTTP request to save my query time?

Or..

Can I send multiple Table Queries simultaneously?

Upvotes: 0

Views: 288

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136196

No. Azure Table Storage does not support this functionality. You would need to send each query separately.

Upvotes: 2

Related Questions