Doctrine queryBuilder:返回对象而不是数组

时间:2017-07-04 15:03:21

标签: php symfony object doctrine-orm query-builder

我用doctrine querybuilder创建了这个查询,我得到的返回是一个数组数组。 我想获得一个对象数组的返回,这可能吗?

我知道通常Doctrine会返回一个实体的对象,因为我有一个内连接来从另一个表中获取它返回数组的名称。

提前致谢。

   $qb->select('u', 'h.name')
        ->from('AppBundle:UserHose', 'u')
        ->innerJoin('AppBundle:Hose', 'h', 'WITH', 'u.hoseId = h.id')
        ->where('u.userId = :userId')
        ->orderBy('u.id', 'DESC')
            ->setParameter('userId', $userId); 


    return $qb->getQuery()->getResult();

4 个答案:

答案 0 :(得分:3)

你可以用这个:

return $qb->getQuery()->getResult(Query::HYDRATE_ARRAY);

或者这个:

return $qb->getQuery()->getArrayResult();

答案 1 :(得分:1)

这种方式不可能。换句话说,你做错了。

你告诉Doctrine返回一个包含实体和字符串的集合集合,这就是你得到的。由于它不知道如何补充这种结果,因此学说不会成为一个对象。

[
  [entity, string],
  [entity, string],
  ....
]

如果您希望仅接收对象集合,则需要创建一个包含两个字段(相关实体和字符串属性)的新实体,然后使用ResultSet mapping来保护它。

答案 2 :(得分:0)

如果你想要对象数组,你必须设置实体之间的关系,并通过关系的拥有方创建一个查询。

示例:

Tourney entity , Invite entity

Invite
    /**
     * @ORM\ManyToOne(targetEntity="Tourney", inversedBy="invites")
     */
    protected $tourneys;

Tourney
    /**

     * @ORM\OneToMany(targetEntity="Invite", mappedBy="tourneys", cascade={"persist", "remove"})
     * @ORM\JoinColumn(nullable=true, onDelete="CASCADE")
     */
    protected $invites;

现在你必须向关系的拥有方(Invite)进行查询 它将在Tour邀请中保存所有你的连接对象数据$ invites

,它会根据您的查询为您提供对象数组。

记住setter $邀请为setInvites(Tourney $邀请)和关系的反面setTourneys(Invite $ tourneys)

答案 3 :(得分:-1)

只需在\Doctrine\ORM\Query::HYDRATE_ARRAY上添加getResult(),就像这样

$qb->select('u', 'h.name')
   ->from('AppBundle:UserHose', 'u')
   ->innerJoin('AppBundle:Hose', 'h', 'WITH', 'u.hoseId = h.id')
   ->where('u.userId = :userId')
   ->orderBy('u.id', 'DESC')
   ->setParameter('userId', $userId); 

return $qb->getQuery()->getResult(\Doctrine\ORM\Query::HYDRATE_ARRAY);