java - Joining 3 tables with hIbernate criteria -


is there way write following sql using hibernate criteria?

select a.columna1, b.columnb1, c.columnc1  inner join b on a.fk_id = b.id  inner join c on c.fk_id = b.id 

this question different hibernate criteria , multiple join


Comments