executequerysegmentedasync

ExecuteQuerySegmentedAsync is not working when the Azure table has more records

亡梦爱人 提交于 2019-12-11 05:20:38
问题 I'm trying to read the records from Azure table storage. I have a simple query while pulling the records var isPagination = true; var combinedFilter = "groupCode eq '9THS'"; var query = new TableQuery<AzStorageEntityAdapter<T>>().Where(combinedFilter); TableRequestOptions tableRequestOptions = new TableRequestOptions() { ServerTimeout = TimeSpan.FromSeconds(90) }; do { var segments = await table.ExecuteQuerySegmentedAsync(query, continuationToken, tableRequestOptions, null); currentPageResult