我正在尝试通过测试属性的属性来创建 DQL 查询。目标是创建一个 DQL 查询,该查询将指示用户以什么角色完成工作,如果用户没有适当的角色,则不返回任何行。
我的实体是角色、工作和用户。用户有角色,工作需要一个角色(来实现它们),而角色有“替代品”,可以链接到可以填补该角色的另一个角色。
实体的存根版本如下所示:
class User {
//Annotation not needed for question
protected $id;
/**
* @var SystemBundle\Entity\Role
*
* @ORM\ManyToMany(targetEntity="SystemBundle\Entity\Role")
* @ORM\JoinTable(name="User_User__Role",
* joinColumns={
* @ORM\JoinColumn(name="User_ID", referencedColumnName="ID")
* },
* inverseJoinColumns={
* @ORM\JoinColumn(name="Role_ID", referencedColumnName="ID")
* }
* )
*/
protected $roles;
}
class Job {
//Annotation not needed for question
protected $id;
/**
* @var SystemBundle\Entity\Role $jobRole
*
* @ORM\ManyToOne(targetEntity="Role")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="Role_ID", referencedColumnName="ID")
* })
*/
protected $jobRole;
}
class Role {
//Annotation not needed for question
protected $id;
/**
* @var SystemBundle\Entity\Role $jobRole
*
* @ORM\OneToOne(targetEntity="Role")
* @ORM\JoinColumn(name="BackupRole_ID", referencedColumnName="ID")
*/
protected $backUpRole;
}
概念逻辑是将 Roles 与 Jobs 连接起来,测试当前 Role 是 job.JobRole 还是 job.JobRole.backUpRole。我已经尝试过了,学说似乎真的不喜欢 job.jobRole.backUpRole 并在第二阶段抛出此错误:
[Syntax Error] line 0, col 210: Error: Expected =, <, <=, <>, >, >=, !=, got '.'
我的 DQL 尝试看起来像这样
SELECT r
FROM SystemBundle:Role r
INNER JOIN ProcessBundle:Job j
WITH j = :j AND j.jobRole = r OR j.jobRole.backUpRole = r
LEFT JOIN UserBundle:User u
WITH r MEMBER OF u.roles
WHERE u = :emp AND u IS NOT NULL
ORDER BY r.id
我可以用纯 SQL 完成这项任务,也可以只使用 php 来遍历关联,但我希望坚持使用 DQL(因为它让我很烦恼,我想知道它是否可以完成)。
如果有帮助,这是我的纯 SQL:
#get all roles
select r.*
from Sys_Role as r
inner join
#get the role assigned to the job
(select r.*
FROM Sys_Role as r
INNER JOIN Sys_Job as j
ON j.JobRole_ID = r.ID
WHERE j.ID = ?) as jr
#join roles based on the job-role's id or backup id
# this should filter the list of roles down to the role and backup role for the job
on ar.ID = aar.ID OR ar.ID = aar.BackUpRole_ID
# and filter by the roles the user is assigned
INNER JOIN User_User__Role as uur
ON r.ID = uur.Role_ID
WHERE uur.User_ID = ?
编辑:我很抱歉。在编辑问题布局时,我不小心删除了 DQL。我已经添加了这个问题!
更新:我正在探索使 $backUpRole 成为双向自连接并从该方向进行攻击。Doctrine 不喜欢这种幼稚的尝试,所以看起来如果使用这种机智,就需要新鲜的 DQL。
将 DQL 更改为WITH j = :j AND j.jobRole = r OR j.jobRole = r.roleIBackUp
会产生新错误:A single-valued association path expression to an inverse side is not supported in DQL queries. Use an explicit join instead.