Sonata Admin ManyToOne error: “sonata_type_collection - mapping : 2 ”
I want to use Sonata Admin Gallery feature into my News Entity . Here is my code News.yml .... manyToOne: gallery: targetEntity: Application\Sonata\MediaBundle\Entity\Gallery inversedBy: news_gallery cascade: ["persist"] nullable: true Gallery.orm.xml .... <one-to-many field="news_gallery" target-entity="Wenweipo\NewsBundle\Entity\News" mapped-by="gallery" /> NewsAdmin.php protected function configureFormFields(FormMapper $formMapper) { $formMapper ->add('gallery', 'sonata_type_collection', array( 'cascade_validation' => true, ), array( 'edit' => 'inline', 'inline' => 'table', 'sortable' =>