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
@@ -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());