예제 #1
0
 public Task <T> GetAsync <T>(string tableName, string partitionKey, string rowKey) where T : new()
 {
     return(_context.CreateQuery <T>(tableName)
            .PartitionKeyEquals(partitionKey)
            .RowKeyEquals(rowKey)
            .PartialAsync()
            .ContinueWith(task => EndGetAsync(task, partitionKey, rowKey)));
 }