WHERE a = 1 AND (b = 1 Or b = 2) AND (c = 1 OR c = 2)
Comment puis-je faire cela dans 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 se trouve la fonction getNewCriterion , et dans Doctrine...?