With JPA 2 Criteria Join method I can do the following:
//Join Example (default inner join)
int age = 25;
CriteriaBuilder cb = entityManager.getC
It Works for me using Hibernate Provider.
//Join Example (default inner join)
int age = 25;
CriteriaBuilder cb = entityManager.getCriteriaBuilder();
CriteriaQuery c = cb.createQuery(Team.class);
Root t = c.from(Team.class);
// Join p = t.join(Team_.players);
Join p = (Join)t.fetch(Team_.players);
c.select(t).where(cb.equal(p.get(Player_.age), age));
TypedQuery q = entityManager.createQuery(c);
List result = q.getResultList();
Certainly, it could broken the portability, but in our case we have been using others hibernate's exclusive features.
*It is very strange because the hibernate documentation doesn't show this example.
To grasp it look at this interface.
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.ejb.criteria;
import javax.persistence.criteria.Fetch;
import javax.persistence.criteria.Join;
/**
* Consolidates the {@link Join} and {@link Fetch} hierarchies since that is how we implement them.
* This allows us to treat them polymorphically.
*
* @author Steve Ebersole
*/
public interface JoinImplementor extends Join, Fetch, FromImplementor {
/**
* {@inheritDoc}
*
* Refined return type
*/
public JoinImplementor correlateTo(CriteriaSubqueryImpl subquery);
}