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

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -