How to use andWhere and orWhere in Doctrine?

前端 未结 4 1923
萌比男神i
萌比男神i 2020-12-05 22:40
WHERE a = 1 AND (b = 1 Or b = 2) AND (c = 1 OR c = 2)

How can i make this in Doctrine?

$q->where(\"a = 1\");
$q->andWhere(\"b         


        
4条回答
  •  鱼传尺愫
    2020-12-05 23:14

    One thing missing here: if you have a varying number of elements that you want to put together to something like

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

    and dont want to assemble a DQL-String yourself, you can use the orX mentioned above like this:

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

提交回复
热议问题