我有下面的查询代码,但它使用两个主键之一获取前 3 个值。我想要的是选择最后 3 行。
仅供参考 - 我的 RowKeys 是增量添加的数字(例如 1、2、3、4、5)
var tableUri = "https://mytableuri.table.core.windows.net";
var tableService = AzureStorage.Table.createTableServiceWithSas(tableUri, sasToken);
var tableQuery = new AzureStorage.Table.TableQuery().top(3).where('PartitionKey eq ? or PartitionKey eq ?', partitionA, partitionB);
我想要类似的东西
var tableQuery = new AzureStorage.Table.TableQuery().last(3).where('PartitionKey eq ? and RowKey starts at TotalCount or PartitionKey eq ? and RowKey starts at TotalCount', partitionA, partitionB);