Is there a way to write the following sql using hibernate criteria?
select A.columnA1, B.columnB1, C.columnC1
from A inner join B on A.fk_id = B.id
inner join C on C.fk_id = B.id
This question is slightly different from Hibernate Criteria and multiple join