我有如下课程:
Class Order
{
// Order have many Product
// One to Many -> ProductOrder
}
Class ProductOrder
{
$order
$product
$type
// other variable
}
Class Product
{
// Product has many Order
// One to Many -> ProductOrder
}
基本上我有@manytomany
额外的列,所以我需要根据这里ProductOrder
黄色框中的注释在中间。
我的问题是如何使用One Order
and获得一种形式Multiple Products
。
像How to setup a many to many form in Symfony2但我需要中产阶级UserTask
。如果我使用没有中产阶级的多对多,我可以轻松地创建表单并且一切正常,但是拥有中产阶级和相同的功能是我所需要的。