我的 Symfony2 项目中有三个实体:
- 用户
- 团体
- 组织
第四个实体表示上述三者之间的关系:
- UserOrganisationGroup {userId, organizationId, groupId}
现在,我需要获取以某种方式加载用户及其组和组织的连接查询。我虽然是这样的:
SELECT u, g, o, uog
FROM Yocto\Bundle\UserBundle\Entity\User u
JOIN u.userOrganisationGroup uog
JOIN uog.organisation o
JOIN uog.group g
WHERE uog.user = 1
但我得到的只是用户实体,而组织和组似乎为 NULL。我究竟做错了什么?我知道数据库的记录如下:
User
id | 1
Organisation
id | 1
Group
id | 1
UserOrganisationGroup
userId | 1
groupId | 1
organisationId | 1
array(1) {
[0]=>
object(stdClass)#490 (15) {
["__CLASS__"]=>
string(35) "UserBundle\Entity\User"
["id"]=>
int(1)
["userOrganisationGroup"]=>
array(1) {
[0]=>
object(stdClass)#502 (4) {
["__CLASS__"]=>
string(52) "UserBundle\Entity\UserOrganisationGroup"
["user"]=>
object(stdClass)#507 (15) {
["__CLASS__"]=>
string(35) "UserBundle\Entity\User"
["id"]=>
int(1)
["userOrganisationGroup"]=>
array(1) {
[0]=>
object(stdClass)#525 (4) {
["__CLASS__"]=>
string(52) "UserBundle\Entity\UserOrganisationGroup"
["user"]=>
string(35) "UserBundle\Entity\User"
["group"]=>
NULL
["organisation"]=>
NULL
}
}
}
["group"]=>
NULL
["organisation"]=>
NULL
}
}
}
}