mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Deprecate orderBy() migrate to order()
This commit is contained in:
@@ -151,7 +151,7 @@ public class TestRawSqlOrmQuery extends BaseTestCase {
|
||||
|
||||
query.setFirstRow(1);
|
||||
query.setMaxRows(2);
|
||||
query.orderBy("id");
|
||||
query.order("id");
|
||||
|
||||
List<Customer> list = query.findList();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user