回答
我能够在 where 子句中使用 IS NOT EMPTY 进行查询。
/**
* Finds all developments having at least one image.
*
* @param string
* @return array
*/
public function withImages()
{
return $this->query->createQueryBuilder('d')
->where('d.images IS NOT EMPTY')
->getQuery()
->getResult();
}
问题
我正在使用 Doctrine ORM。我希望能够获得至少具有一个图像的所有开发,这样对于查询中选择的每个开发,以下属性都是正确的。$development->getImages()->count()) > 0
.
我有一个 Development 实体,它与 Image 实体具有一对多关系。
/**
* The Development class provides an abstraction of a development.
*
* @Entity
* @HasLifecycleCallbacks
* @Table(name="developments")
**/
class Development extends BaseEntitiy {
/** @OneToMany(targetEntity="Exquisite\Entity\Image", mappedBy="development") **/
protected $images;
我有一个 DevelopmentRepository,它有一个 EntityManager 实例和一个实体的 Repository 实例。我已尝试在 DevelopmentRepository 类的 withImages() 方法中执行此操作,但运气不佳。
class DevelopmentRepository implements DevelopmentRepositoryInterface {
/**
* Class Constructor
*
* @param Doctinre\ORM\EntityManager The EntityManager instance.
*/
public function __construct(EntityManager $em)
{
$this->em = $em;
$this->query = $this->em->getRepository('Exquisite\Entity\Development');
}
/**
* Finds all developments having at least one image.
*
* @param string
* @return array
*/
public function withImages()
{
$qb = $this->query->createQueryBuilder('d');
$qb2 = $this->em->createQueryBuilder();
return $qb->where($qb->expr()->exists($qb2->select('i.development')->from('Exquisite\Entity\Image', 'i')->getDql()))
->getQuery()
->getResult();
}
任何帮助将非常感激!