c# - How to get more than 1000 entities from an azure table storage query? -
i have read azure table storage queries give maximum of 1000 entities , have make use of continuation tokens fetch next set of entities. looking easy way that. want fetch entities query should return , not 1000 entities. have read @smarx post here , mentions executeall
method in tablestoragedataservicequery
seems have deprecated cant find tablestoragedataservicequery
in storage client library.
i found msdn documentation on how handle continuation tokens fetch entities. want know if best way entities, dont need pagination. or there executeall esque method can use?
using astableservicequery so:
var data = context.createquery<someentity>("table").astableservicequery<someentity>().execute();
Comments
Post a Comment