我有一个连接到数据库的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;
}
在Workplace Entity中我有:
/**
* @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"
如何解决这个问题。非常感谢你。
答案 0 :(得分:6)
试试这个
->add('place','entity', array('class'=>'yourBundle:WorkPlace',
'property'=>'place'))
表单中的类型。
答案 1 :(得分: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"
这就是您的错误和解决方案解释的原因。