Deprecate orderBy() migrate to order()

This commit is contained in:
rob bygrave
2020-02-18 23:27:43 +13:00
parent 6961bf5787
commit 168dacffa7
39 changed files with 100 additions and 134 deletions
@@ -15,7 +15,7 @@ public class TestQueryOrderById extends BaseTestCase {
Query<Customer> query = DB.find(Customer.class)
.select("id,name")
.orderBy("id")
.order("id")
.setFirstRow(1)
.setMaxRows(5);