带有嵌套参数的Doctrine 2 DQL会抛出Invalid PathExpression异常

时间:2012-05-23 13:22:11

标签: php doctrine-orm

我在为代码编写正确的DQL时遇到问题(例外:无效的PathExpression。必须是StateFieldPathExpression)。 我将首先描绘我的项目结构。

每个实体都继承自IdentifiableObject,它为每个实体提供id

 /**
 * @MappedSuperclass
 */
class IdentifiableObject {
    /**
     * @Id
     * @Column(type="integer")
     * @GeneratedValue(strategy="IDENTITY")
     */
    protected $id;

    /**
     * getters and setters go here
     */
}

然后我们有一个User对象,其中包含一个“UserProperties”列表

 /**
 * @Entity
 * @Table(name="users")
 */
class User extends IdentifiableObject {
    /**
     * Other unimportant vars go here
     */

    /**
     * @Column(type="string")
     */
    private $userName;

     /**
     * @OneToMany(targetEntity="UserProperty", mappedBy="user", cascade={"persist", "remove"}, orphanRemoval=true)
     */
    private $userProperties = null;

     public function __construct() {
        $this->userProperties = new ArrayCollection();
    }

    /**
     * Getters and setters go here
     */
}

Userproperty有一个属性(基本上是一种类型,说明它是什么类型的用户属性)和值

    /**
     * @Entity
     * @Table(name="userProperties")
     */
    class UserProperty extends IdentifiableObject {
        /**
         * @OneToOne(targetEntity="Property")
         * @JoinColumn(name="propertyID", referencedColumnName="id")
         */
        private $property;

        /**
         * @ManyToOne(targetEntity="User")
         * @JoinColumn(name="userID", referencedColumnName="id")
         */
        private $userValue
    }

最后是财产

  
    /**
     * @Entity
     * @Table(name="properties")
     */
    class Property extends IdentifiableObject {

        /**
         * @Column(type="string")
         */
        private $name;

        /**
         * @Column(type="string")
         */
        private $description;

        /**
         * @Column(type="integer")
         */
        private $mandatory = 0;

        /**
         * @OneToOne(targetEntity="PropertyType")
         * @JoinColumn(name="type", referencedColumnName="id")
         */
        private $type;
}

我想要做的是让所有拥有与某个属性相对应的Userproperty的用户。 我的尝试是:

$queryUserId = "SELECT userprop.user FROM UserProperty userprop JOIN userprop.property prop WHERE prop.id = '$propertyId'";

$queryUserId = "SELECT user FROM User user JOIN user.userProperties userprop WHERE userprop in(SELECT up FROM UserProperty up WHERE up.property = '$property')";

截至今天,除了“无效的PathExpression。必须是StateFieldPathExpression”之外,我无法从系统中得到任何合理的信息......

任何人都可以提供帮助吗?

编辑:我会澄清我在这里要做的事情。

我想要的是这个SQL查询的DQL版本(有效):

SELECT * 
FROM users
WHERE id
IN (
     SELECT u.userId
     FROM userproperties u, properties p
     WHERE u.propertyID = p.id
     AND p.id =1
)

p.id = xxx将是我想在搜索中使用的属性对象(或至少是id)。

1 个答案:

答案 0 :(得分:0)

好吧,我似乎找到了一个可行的DQL解决方案:

$query = "SELECT user from User user WHERE user.id in(SELECT u FROM UserProperty up JOIN up.user u WHERE up.property = '$property')"

作品! (你需要在subQuery中加入用户,否则你会得到可怕的“Invalid PathExpression”异常。