Files
ebean/src/test/java/org/tests
rob bygrave a932d61a94 #1737 - PersistenceException while using aggregate query on related entity
This part includes support for joins off an aggregation formula
on a ManyToOne.

e.g. We use min(customer) ... to 'query join' to customer
in the query below.

    List<Contact> contacts = Ebean.find(Contact.class)
      .select("lastName, min(customer)")
      .fetchQuery("customer", "name, status")
      .findList();
2019-06-28 21:03:14 +12:00
..
2019-05-12 11:41:24 +12:00
2016-12-11 23:23:22 +13:00
2016-12-11 23:23:22 +13:00
2017-09-14 00:32:48 +12:00
2017-07-03 20:27:37 +12:00
2016-12-11 23:23:22 +13:00
2017-09-14 00:32:48 +12:00
2019-05-12 11:41:24 +12:00