How to implement paging in Azure TableClient 2.0 using segmented execution?
is it possible to implement the below function
IEnumerable<Message> GetMessages(int currentPage, int pageSize)
{
}
Based in this question i can Take the desired count of records, but i don't how to skip pages or set the starting point.