如何创建查询以选择多个元素

时间:2013-03-26 16:03:20

标签: symfony doctrine-orm many-to-many

我的实体具有多对多连接:

  • 实体 - 主要对象
  • 客户 - 通过" entity_clients"与实体进行多对多。表

配置.yml

manyToMany:
  clients:
    targetEntity: Client
    joinTable:
      name: entity_clients
      joinColumns:
        taskpack_id:
          referencedColumnName: id
      inverseJoinColumns:
        client_id:
          referencedColumnName: id

我有实体元素,我想要附加查询客户端。 客户我可以选择:

    $em = $this->getDoctrine()->getManager();
    $entity = $em->getRepository('TestGroupBundle:Entity')->find($id);
    $clients = $entity->getClients();

但我需要查询如何选择这些元素。我尝试写查询但不是这样的:

$qb = $this->em->createQueryBuilder()
            ->select('c')
            ->from('TestGroupBundle:Entity', 't')
            ->join('t.clients', 'c')
            ->andWhere('t.id = :id')
            ->setParameter('id', $id);

但我得到错误:

[Semantical Error] line 0, col -1 near 'SELECT c FROM': Error: Cannot select entity through identification variables without choosing at least one root entity alias.

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

我认为您需要将初始实体添加到选择中。

->select('t, c')