Symfony EasyAdmin捆绑一对多

时间:2016-01-03 17:08:47

标签: symfony doctrine-orm bundle symfony2-easyadmin

有没有在symfony2中的EasyAdmin包中做一对多的关系?

到目前为止,我的用户工作正常,但其他实体并没有一对多关系。

我在MySQL的学说中有数据库。

1 个答案:

答案 0 :(得分:9)

EasyAdminBundle支持各种实体关联。

没有关于实体关联的文档,因为它不是EasyAdminBundle的一部分,而是Doctrine。例如,这是一个OneToMany协会。

/**
 * 
 * @var ArrayCollection
 * @ORM\OneToMany(targetEntity="DocumentBundle\Entity\Document", mappedBy="course")
 * 
 */
private $documents;

public function __construct()
{
    $this->documents = new \Doctrine\Common\Collections\ArrayCollection();
}

这是协会的另一面

/**
 * Many-to-one relationship between documents and course
 *
 * @var ArrayCollection
 * @ORM\ManyToOne(targetEntity="CourseBundle\Entity\Course",inversedBy="documents")
 * @ORM\JoinColumn(name="course_id", referencedColumnName="id")
 */
private $course;

配置就像这样:

easy_admin:
    site_name: 'Learn-In Admin'
    entities:
        Courses:
            class: CourseBundle\Entity\Course
            new:
               fields: ['name','code'] 
        Documents:
            class: DocumentBundle\Entity\Document

您可以在Doctrine文档中找到有关Association Mapping的所有示例。