1
0
mirror of synced 2025-02-06 15:29:26 +03:00

Remove ON in docs

This commit is contained in:
Benjamin Eberlei 2011-11-15 22:21:06 +01:00
parent 650a80a61a
commit 51211980a4

View File

@ -464,8 +464,8 @@ Here is a complete list of helper methods available in
// Example - $qb->from('Phonenumber', 'p') // Example - $qb->from('Phonenumber', 'p')
public function from($from, $alias = null); public function from($from, $alias = null);
// Example - $qb->innerJoin('u.Group', 'g', Expr\Join::ON, $qb->expr()->and($qb->expr()->eq('u.group_id', 'g.id'), 'g.name = ?1')) // Example - $qb->innerJoin('u.Group', 'g', Expr\Join::WITH, $qb->expr()->eq('u.status_id', '?1'))
// Example - $qb->innerJoin('u.Group', 'g', 'ON', 'u.group_id = g.id AND g.name = ?1') // Example - $qb->innerJoin('u.Group', 'g', 'WITH', 'u.status = ?1')
public function innerJoin($join, $alias = null, $conditionType = null, $condition = null); public function innerJoin($join, $alias = null, $conditionType = null, $condition = null);
// Example - $qb->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, $qb->expr()->eq('p.area_code', 55)) // Example - $qb->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, $qb->expr()->eq('p.area_code', 55))