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