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:
@@ -26,7 +26,7 @@ public class TestLazyLoadInCache extends BaseTestCase {
|
||||
.select("id, name")
|
||||
.setBeanCacheMode(CacheMode.PUT)
|
||||
.setReadOnly(true)
|
||||
.orderBy().asc("id")
|
||||
.order().asc("id")
|
||||
.findMap();
|
||||
|
||||
assertTrue(!map.isEmpty());
|
||||
|
||||
Reference in New Issue
Block a user