Microsoft suggests azure.data.tables nuget and namespace instead of older microsoft.azure.cosmos.table namespace but it is not well documented and I cannot find more information beside their Github page. Here they described basic querying but my question is; is it possible to get sorted and filtered entities from the server, not on the client side?
For example with the other library it is possible to use TableQuery and do take, orderby operations like described here
What i am trying to achieve it basically
var result= query.OrderByDescending(l => l.Timestamp).Skip((pagenumber- 1) * count.Value).Take(count.Value);
Is it possible to achieve this query on the server side using Azure.Data.Tables namespace?