Код: Выделить всё
private async Task GetTableDataAsync(CloudTable cloudTable, TableQuery tableQuery)
where T : ITableEntity, new()
{
TableContinuationToken contineousToken = null;
do
{
var currentSegment = await GetAzureTableDateAsync(cloudTable, tableQuery, contineousToken);
contineousToken = currentSegment.ContinuationToken;
yield return currentSegment.Results;
} while (contineousToken != null);
}
Подробнее здесь: https://stackoverflow.com/questions/220 ... type-error
Мобильная версия