我试图通过 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')
但它总是返回照片,即使它处于非活动状态。