Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想获取 Azure 表中每个分区的第一行。我可以获取所有数据,然后在该结果上使用此答案中的解决方案。我要问的是“我可以在 Azure 方面做到这一点而不会得到所有不必要的结果吗?”
对您的问题的简单回答是,PartitionKey在事先不知道的情况下,从 Azure Table 端无法进行此类操作。如果您知道这些PartitionKey值,则可以查询该值(RowKey不是必需的),然后通过将$top=1(Take(1)在 LINQ 中)指定为查询字符串参数之一来获得单个结果。
PartitionKey
RowKey
$top=1
Take(1)