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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -