データがテーブルストレージから取得される方法を知っている人はいますか?テーブルストレージループの仕組みは?
var result = ctx.CreateQuery<Contact>("Contacts")
.Where(x => x.PartitionKey == "key")
.Take(50)
.AsTableServiceQuery<Contact>().Execute();
foreach(var item in result)
{
Console.WriteLine(item.FirstName);
}
すべてのアイテムをストレージから取得してループ経由で取得するのか、それとも個別に取得するのか。