probably a rookie question here, but I tried to find the answer for few days now.. I have these classes -
class A{
private B b;
private Set<C> c;
....
}
class B{
private D d;
...
}
class C{
private E e;
...
}
I need to query all A classes with a restriction that their B.D is the same. then, I need to return only the list of the C.E that remained (probably using projection). I don't want to return all A's from the query and extract from them the C.E due to performance issues.
any help will be much appreciated!
Edit - this is what I have so far -
Criteria criteria = sessionFactory.getCurrentSession().createCriteria(A.class);
criteria.add(Restrictions.eq("B.C", a.getB().getC()));
criteria.setProjection(Projections.property("D.E"));
criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);