web-dev-qa-db-fra.com

Comment utiliser andWhere et orWhere dans la doctrine?

WHERE a = 1 AND (b = 1 Or b = 2) AND (c = 1 OR c = 2)

Comment puis-je faire cela dans la doctrine?

$q->where("a = 1");
$q->andWhere("b = 1")
$q->orWhere("b = 2")
$q->andWhere("c = 1")
$q->orWhere("d = 2")

ce n'est pas correctement ... devrait être:

$q->where("a = 1");
$q->andWhere("b = 1")
   $q->orWhere("b = 2")
$q->andWhere("c = 1")
   $q->orWhere("d = 2")

mais comment puis-je le faire? Dans Propel, la fonction reçoit le critère , et dans la doctrine ...?

63
Paul Attuck
$q->where("a = 1")
  ->andWhere("b = 1 OR b = 2")
  ->andWhere("c = 2 OR c = 2")
  ;
101
Maerlyn

Voici un exemple pour ceux qui ont des conditions plus compliquées et qui utilisent Doctrine 2. * avec QueryBuilder ):

$qb->where('o.foo = 1')
   ->andWhere($qb->expr()->orX(
      $qb->expr()->eq('o.bar', 1),
      $qb->expr()->eq('o.bar', 2)
   ))
  ;

Ce sont des expressions mentionnées dans la réponse de Czechnology.

65
Serge Kvashnin

Pourquoi pas juste

$q->where("a = 1");
$q->andWhere("b = 1 OR b = 2");
$q->andWhere("c = 1 OR d = 2");

[~ # ~] edit [~ # ~] : Vous pouvez également utiliser le classe Expr (Doctrine2).

12
Czechnology

Une chose manque ici: si vous voulez associer un nombre variable d’éléments à quelque chose comme:

WHERE [...] AND (field LIKE '%abc%' OR field LIKE '%def%')

et vous ne voulez pas assembler vous-même une chaîne DQL, vous pouvez utiliser le orX mentionné ci-dessus comme ceci:

$patterns = ['abc', 'def'];
$orStatements = $qb->expr()->orX();
foreach ($patterns as $pattern) {
    $orStatements->add(
        $qb->expr()->like('field', $qb->expr()->literal('%' . $pattern . '%'))
    );
}
$qb->andWhere($orStatements);
6
leberknecht