【发布时间】:2020-11-20 12:53:13
【问题描述】:
我正在尝试使用其余 api 从 azure 数据表中检索数据。Url 看起来像这样。
https://<service-url>/Customers(PartitionKey='MyPartition')
无效数据导致 Api 错误。
如果我添加 RowKey 以及 PartitionKey 类似的东西。它有效。
https://<service-url>/Customers(PartitionKey='MyPartition',RowKey='MyRowKey1')
是否需要传递RowKey?
如果我只想从一个分区中检索所有数据怎么办。 我知道,我们可以在查询参数中添加一个 $filter 但这不会导致性能问题吗?
请分享你的想法。
谢谢!
【问题讨论】:
标签: azure azure-table-storage azure-tablequery