Multiple Joins using Criteria builder

55 Views Asked by At

Trying to build the critaria for the below query

Select a.x,c.y from A a
JOIN B b on a.a = b.a
JOIN C c on b.c = c.c
JOIN D d on c.d = d.d

Tried with below Criteria

Root<A> root = criteriaQuery.from(A);
Join<A, B> join1 = root.join(“b”);
Join<B, C> join2 = join1.join(“b”);
Join<C, D> join3 = join2.join(“c”)

But i was not getting expected results, any suggestions

0

There are 0 best solutions below