在使用sf4的奏鸣曲管理员中,处于多对多关系。 我遇到此错误:可捕获的致命错误:无法将类Doctrine \ ORM \ PersistentCollection的对象转换为字符串
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('Landcrops', EntityType::class, [
'class' => Landcrops::class,
'choice_label' => 'lands',
'expanded' => true,
'multiple' => true,
])
;
}
我是从命令行创建的:bin console make:entity
我在做什么错了?
非常感谢