(+) 별칭(alias)
/**
* Create a left join with the given target.
* Use fetchJoin() to add the fetchJoin parameter to this join.
*
* @param <P>
* @param target target
* @return the current object
*/
<P> JPQLQuery<T> leftJoin(CollectionExpression<?,P> target);
/**
* Create a left join with the given target and alias.
*
* @param <P>
* @param target target
* @param alias alias
* @return the current object
*/
<P> JPQLQuery<T> leftJoin(CollectionExpression<?,P> target, Path<P> alias);Last updated