📅  最后修改于: 2022-03-11 14:54:06.530000             🧑  作者: Mango
$qb = $entityManager->createQueryBuilder();
$qb->select('assoc1.thing as thing1, assoc2.thing as thing2')
->from(assoc1::class, 'assoc1')
->innerJoin(assoc2::class, 'assoc2', 'with', 'assoc1.someId = assoc2.someId')
->getQuery()
->getResult();