奏鸣曲sf4中的多对多(PersistentCollection无法转换为字符串)

时间:2019-12-11 17:47:53

标签: many-to-many symfony4 symfony-sonata

在使用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

我在做什么错了?

非常感谢

0 个答案:

没有答案