我试图通过ID找到一个“产品”,和左连接所有它的两个条件“照片”:区域设置和活动状态。
这里是我的QueryBuilder:
$queryBuilder = $this->createQueryBuilder('p') ->select('p, photos, photoTranslation') ->leftJoin('p.photos', 'photos') ->leftJoin('photos.translations', 'photoTranslation') ->where('p.id = :id') ->andWhere('(photoTranslation.locale = :locale OR photoTranslation.locale IS NULL)') ->andWhere('(photoTranslation.active = :active OR photoTranslation.active IS NULL)') ->setParameters(array( 'id' => $id 'locale' => $this->getLocale(), 'active' => true ));
当没有照片或当有活动的照片,而不是当有不活动的照片,因为它不符合这两个条件之一,它工作正常。
如果我只用一个条件,例如仅语言环境的一部分,它工作正常:
$queryBuilder = $this->createQueryBuilder('p') ->select('p, photos, photoTranslation') ->leftJoin('p.photos', 'photos') ->leftJoin('photos.translations', 'photoTranslation') ->where('p.id = :id') ->andWhere('(photoTranslation.locale = :locale OR photoTranslation.locale IS NULL)') ->setParameters(array( 'id' => $id 'locale' => $this->getLocale() ));
现在,我对循环论文的结果和取消所有不活动的照片......但我想要一个干净的方式在QueryBuilder的做。
我也试图把条件对LEFT JOIN子句:
->leftJoin('photo.translations', 'phototTranslation', Doctrine\ORM\Query\Expr\JOIN::WITH, 'photoTranslation.locale = :locale AND photoTranslation.active = :active')
但它总是返回照片,即使它是无效的。