コード例 #1
0
 /// <summary>
 /// Gets all records asynchronously.  This method may be slow if there is a high volume of
 /// data across many partitions, prefer to use <see cref="GetByPartitionKeyAsync(string)"/>
 /// </summary>
 /// <param name="pageSize">Size of the page.</param>
 /// <param name="pageToken">The page token.</param>
 /// <returns>Task&lt;PagedResult&lt;T&gt;&gt;.</returns>
 public async Task <PagedResult <T> > GetAllRecordsPagedAsync(int pageSize = 100, string pageToken = null)
 {
     return(CreatePagedResult(await _tableStore.GetAllRecordsPagedAsync(pageSize, pageToken).ConfigureAwait(false)));
 }