4

我有一个连接到数据库的 Symfony2 项目。对于每个表,我都有一个实体。

现在,我正在尝试使用 ManyToOne 将一个实体与另一个实体连接起来。

这是问题所在:

我有两个实体:用户和工作场所。

在用户实体中,我有:

 /**
 * @ORM\ManyToOne(targetEntity="Workplace")
 * @ORM\JoinColumn(name="workplace", referencedColumnName="place")
 **/
protected $workplace;

/**
 * Set workplace
 *
 * @param integer $workplace
 */
public function setWorkplace($workplace)
{
    $this->workplace = $workplace;
}

/**
 * Get workplace
 *
 * @return integer 
 */
public function getWorkplace()
{
    return $this->workplace;
}

在工作场所实体中,我有:

/**
 * @ORM\Column(type="text")
 */
protected $place;



/**
 * Set place
 *
 * @param text $place
 */
public function setPlace($place)
{
    $this->place = $place;
}

/**
 * Get place
 *
 * @return text 
 */
public function getPlace()
{
    return $this->place;
}

有了这个,我得到了一个例外:

Neither property "workplace" nor method "getWorkplace()" nor method "isWorkplace()" exists in class "SciForum\Version2Bundle\Entity\Workplace" 

这怎么可能解决。非常感谢你。

4

2 回答 2

6

试试这个

->add('place','entity',  array('class'=>'yourBundle:WorkPlace',
                               'property'=>'place'))

在您的表单类型中。

于 2012-10-12T07:08:37.843 回答
5

@Asish AP 是对的,但缺少解释。

在 formBuilder 中,如果您在两个实体之间存在关系,则必须在表单类型中指定正确的实体。

->add(
    'place',
    'entity',  
        array(
            'class'=>'yourBundle:WorkPlace', //Link your entity
            'property'=>'place' //Specify the property name in the entity
))

如果你在formBuilder中指定了一个不存在的属性,就会出现这个错误:

Neither property "workplace" nor method "getWorkplace()" nor method "isWorkplace()" exists in class "SciForum\Version2Bundle\Entity\Workplace"

这就是你的错误的原因和解决方案的解释。

https://creativcoders.wordpress.com/2014/06/02/sf2-neither-the-property-nor-one-of-the-methods-exist-and-have-public-access-in-class/

于 2014-06-02T12:53:15.407 回答