📜  颤动的火力限制查询 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:44.642000             🧑  作者: Mango

代码示例1
Query query = cities.orderBy("name").limit(3); // descending order

Query query = cities.whereGreaterThan("population", 2500000L).orderBy("population").limit(2); // ascending order