是什麼以下發電機數據庫查詢語法之間的區別:我們以前用的迪納摩DB Java語法
QueryRequest queryRequest = new QueryRequest().withTableName(TABLE).withKeyConditions(keyConditions)....;
和最新的文檔中,我看到:
table.query("Id", replyId,
null, ///RangeKeyCondition - not used in this example
"PostedBy = :val", //FilterExpression
哪一個應我們用? 它是一個新的語法?區別在哪裏?
謝謝