I am using JPQL for the model queries from Play Framework.
I wonder if JPQL supports \"complex\" ON condition for LEFT JOIN.
In an example I have, there are
JPQL, AFAIK, doesn't support ON clauses, but HQL does support them. The chose to use the with keyword though:
ON
with
select a from App a left join a.history h with h.fromDate = :fromDate where h.fromDate is null