假设我有一个包含 50K 行的 Azure 存储表,其中包含这样的实体
{
PartitionKey,
RowKey,
Name,
Price
}
查询将是这样的
var query = from entity in dataServiceContext.CreateQuery<MyEntity>(tableName)
where entity.Price == 10
select new { entity.Name};
当我需要搜索 Price == 10 的所有实体时,交易是否只计算返回的结果数?或者每个实体(entity.Price == 10)的检查是否会被计为单独的读取事务,这会导致 50K 事务?