SELECT e.Name, d.Status, count(*)
LEFT OUTER JOIN delivery d on e.Id = d.EventId
I hoped to realize the above query with Hibernate in HQL. Actually you can do joins between entities where no association is mapped:
SELECT new ReportDto(e.Name, d.Status, count(d))
FROM Delivery d, StatisticalEvent e where d.EventId = e.Id
GROUP BY d.EventId, e.Name, d.Status
You can do outer joins with Hibernate:
SELECT new ReportDto(e.Name, d.Status, count(d))
FROM Delivery d right outer join d.Event e
GROUP BY e.Name, d.Status
... unfortunately you have to have mapped the association between the two entities, since you have to feed a path to the join expression.
Read more: CLOSED-LOOP