Azure – How many requests TableClient.Query<T> will make, if AsPages() is not used?
I have a question about Pageable< T > in C#. I have table storage in Azure named- Domains. I am using Azure.Data.Tables nuget package, and to Query all the domains i am using this : var domains = _localDomainTableClient .Query<Domain>()…