WIP AutoTune refactor

This commit is contained in:
Robin Bygrave
2015-09-04 08:48:25 +12:00
parent 5c1de0a886
commit 5b8ce8eaa0
27 changed files with 1092 additions and 34 deletions
@@ -30,8 +30,8 @@ public class TestAutofetchTuneWithJoin extends BaseTestCase {
Query<Order> q = Ebean.find(Order.class)
.setAutofetch(true)
.fetch("customer")
.fetch("customer.contacts")
//.fetch("customer")
//.fetch("customer.contacts")
.where().lt("id", 3).query();
List<Order> list = q.findList();