How to get more than 1000 entities from an azure table storage query?

前端 未结 4 1471
暗喜
暗喜 2020-12-10 19:30

I have read that azure table storage queries give maximum of 1000 entities and we have to make use of continuation tokens to fetch the next set of entities. I am just lookin

4条回答
  •  独厮守ぢ
    2020-12-10 20:16

    Using the AsTableServiceQuery like so:

    var data = context.CreateQuery("table").AsTableServiceQuery().Execute();
    

提交回复
热议问题