Retrieving many rows using a TableBatchOperation is not supported?

前端 未结 7 704
被撕碎了的回忆
被撕碎了的回忆 2021-01-11 11:55

Here is a piece of code that initialize a TableBatchOperation designed to retrieve two rows in a single batch:

 TableBatchOperation batch = new TableBatchOpe         


        
7条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-11 12:24

    Your best bet is to create a Linq/OData select query... that will fetch what you're looking for.

    For better performance you should make one query per partition and run those queries simultaneously.

    I haven't tested this personally, but think it would work.

提交回复
热议问题