This works fine to page over data in steps of at most 1000 items:
var q1 =
(from book in table.CreateQuery<DynamicTableEntity>()
where book.PartitionKey == "TestPartition"
select book).AsTableQuery();
TableContinuationToken continuationToken = null;
do
{
var counter = 0;
var queryResult = q1.ExecuteSegmented(continuationToken);
foreach (var entity in queryResult)
{
Console.WriteLine(entity.Timestamp + " " + ++counter);
}
continuationToken = queryResult.ContinuationToken;
Console.WriteLine("####" + counter);
} while (continuationToken != null);
What I would really like to do is start with the oldest items first. In other words page over items ordered ascendingly by entity.Timestamp. This query does not work:
var q1 =
(from book in table.CreateQuery<DynamicTableEntity>()
where book.PartitionKey == "TestPartition"
select book).OrderBy(x => x.Timestamp).AsTableQuery();
TableContinuationToken continuationToken = null;
do
{
var counter = 0;
var queryResult = q1.ExecuteSegmented(continuationToken);
foreach (var entity in queryResult)
{
Console.WriteLine(entity.Timestamp + " " + ++counter);
}
continuationToken = queryResult.ContinuationToken;
Console.WriteLine("####" + counter);
} while (continuationToken != null);
As OrderBy is not supported. Is there anything I can do to achieve this? Thanks.
PS:
This may help. However it retrieves the newest items first, whereas I want to retrieve the oldest first.
This link and the quoted white paper helped me to solve this one.
Step 1:
Use ticks as rowkey whilst creating the entities like so:
To order the entities ascendingly during paged retrieval, use the 'TableContinuationToken approach' involving the rowkey ticks:
Hope this helps someone else. Any improvement suggestion/criticism welcome.