In the DAO class, I have to join the table class (Table1.class) related to that dao(Table1Dao) class with another class instance table(Table2.class).
What I am trying to do inside Table1Dao is:
Criteria criteria = getSession().createCriteria(Table1.class, "tab1"); criteria.createCriteria("tab1.(Table2.class)", CriteriaSpecification.FULL_JOIN); criteria.add((Restrictions.eq("tab1.(Table2.class).ID", Id)));
This doesnt seem to return a valid query. What would be the correct way to implement it?
Thank you
|