我有一个如下所示的本地索引表。
如何进行类似 startDate < InvoiceDate < endDate 的查询并按 InvoiceDateLocalIndex 降序对结果进行排序?
据我所知,要对我需要使用 InvoiceDateLocalIndex 的结果进行排序。但如果我使用过,我会收到错误“过滤器表达式只能包含非主键属性:主键属性:InvoiceDate”
"IndexName": "InvoiceDateLocalIndex",
"KeySchema": [
{
"AttributeName": "FinanceYear",
"KeyType": "HASH"
},
{
"AttributeName": "InvoiceDate",
"KeyType": "RANGE"
}
]