Doctrine2:这些实体之间的关联有什么问题?

时间:2011-04-06 14:52:31

标签: doctrine doctrine-orm

我正在尝试通过简单的示例来查看Doctrine2中的所有更改。

请查看以下实体代码段:

VCat.php

namespace Application\Models;

/**
 * @Entity
 * @Table(name="v_cat")
 */
class VCat
{
    /** 
     * @Id @Column(type="bigint")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @OneToMany(targetEntity="VScat", mappedBy="vCat")     )
     */
    private $vScats;

namespace Application\Models;

VScat.php

namespace Application\Models;
/**
 * @Entity
 * @Table(name="v_scat",indexes={@index(name="FK_v_scat",columns={"vcatid"})})
 */
class VScat
{
    /** 
     * @Id @Column(type="bigint")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;


    /**
     * @ManyToOne(targetEntity="VCat", inversedBy="vScats")
     * @JoinColumn(name="vcatid", referencedColumnName="id")
     */
    private $vCat;

vcatid是表v_scat

中的外键列

这是我正在尝试运行的查询:

$categories = Zend_Registry::get('em')
        -> createQuery('select c.name, sub.name as sub_name from \Application\Models\VCat c JOIN c.VScat sub WHERE sub.active = 1 and c.active = 1 and c.id = sub.vcatid')
        -> getResult();

这就是错误:

(string:130) [Semantical Error] line 0, col 69 near 'sub WHERE sub.active': Error: Class Application\Models\VCat has no association named VScat

看来是对的,但我显然错过了一些东西。

UPDATE 现在我收到此错误,它引用了mysql中的表列名。这是不正确的?我以为我需要以某种方式告诉Doctrine这个属性属于DB中的这个字段。

 Error: Class Application\Models\VScat has no field or association named vcatid

1 个答案:

答案 0 :(得分:3)

这是VCat上的属性,您需要引用的不是实体类型。

JOIN c.VScat sub 

应该是:

JOIN c.vScats sub