




















































t().size() is 1; While tt().size() is 4, that's the one-root-entity-per-returned-row phenomenon of hibernate.
Add "setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY)" to eliminate the one-root-entity-per-returned-row phenomenon that you're seeing.
t().size() is 1; While tt().size() is 4, that's the one-root-entity-per-returned-row phenomenon of hibernate.
Add "setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY)" to eliminate the one-root-entity-per-returned-row phenomenon that you're seeing.