Esempio n. 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="GetByPartitionKey(string)"/>
 /// </summary>
 /// <returns>IEnumerable&lt;T&gt;.</returns>
 public IEnumerable <T> GetAllRecords()
 {
     return(CreateRecords(_tableStore.GetAllRecords()));
 }