答案
我能够在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
。
我有一个与图像实体具有一对多关系的开发实体。
/**
* 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的实例和一个Entity的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();
}
非常感谢任何帮助!
答案 0 :(得分:1)
我遇到了同样的问题,这对我有用。
我修复了刚刚进行连接(只返回带有项目的订单):
return $this->createQueryBuilder('so')
->select('so')
->join('so.orderItems', 'soi')
->getQuery()
->getResult();
或使用DQL进行子查询
SELECT so
FROM Entity\\SalesOrder so
WHERE (SELECT count(soi.id) FROM Entity\\SalesOrderItem soi WHERE soi.salesOrder = so.id ) > 0
我希望这会有所帮助