누구도 데이터가 테이블 스토리지에서 수집되는 방법을 알고 있습니까?테이블 저장 루프는 어떻게 작동합니까?
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);
}
저장소에서 모든 항목을 가져 와서 루프를 통과합니까? 아니면 각 항목을 별도로 가져 옵니까?