我的实体具有多对多连接:
配置.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.
有人可以帮忙吗?
答案 0 :(得分:1)
我认为您需要将初始实体添加到选择中。
->select('t, c')