我在entityA和entityB之间有一个多对多的关系,我将使用嵌入的形式来以entityB的形式添加entityA的属性,如下所示
$builder ->add('entityAs', 'entity', array(
'class' => 'xxxBundle:EntityA',
'property' => 'name',
'multiple' => false,
));}
当我将“多个”设置为 true 时,一切正常。但是当我将其设置为 false 时,我收到以下错误
Property "entityAs" is not public in class "xxx\Entity\EntityB". Maybe you should create the method "setEntityAs()"?