Symfony EasyAdmin 捆绑一对多
Symfony EasyAdmin Bundle one to many
在 symfony2 中的 EasyAdmin 包中是否有一对多关系?
到目前为止,我让我的用户工作,但没有其他具有一对多关系的实体。
我有 MySQL 学说的数据库。
EasyAdminBundle 支持各种实体关联。
没有关于实体关联的文档,因为它不是 EasyAdminBundle 的一部分,而是 Doctrine。例如,这是一个 OneToMany Association。
/**
*
* @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 的所有示例。
在 symfony2 中的 EasyAdmin 包中是否有一对多关系?
到目前为止,我让我的用户工作,但没有其他具有一对多关系的实体。
我有 MySQL 学说的数据库。
EasyAdminBundle 支持各种实体关联。
没有关于实体关联的文档,因为它不是 EasyAdminBundle 的一部分,而是 Doctrine。例如,这是一个 OneToMany Association。
/**
*
* @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 的所有示例。