I've an Azure Function to perform some operations on the datasets in an Azure Table Storage.
Since grouping is not working in Azure Table Storages, I have to fetch all datasets in my table and perform the operations I want (grouping, filtering) in my C# code.
But each query retrieves only the top 1000 datasets. How can I get all my datasets - or iterating over the table in bulks of 1000 to get all datasets at the end?
TableQuery<Models.product_item> query = new TableQuery<Models.product_item>()
.Where(TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, myPartitionKey));
var queryResult = myTable.ExecuteQuery(query);