I have three tables A B and C. Now i want to execute this sql query in HQL:
select * from A as a left join B as b on a.id = b.id left join C as c on b.t
Use this query
from A as a left join fetch a.B as b left join fetch b.C as c