我的项目中有三个实体。
第一实体:
class Entity1
{
/**
* @ORM\ManyToMany(targetEntity="App\MyBundle\Entity\Entity2", inversedBy="i")
*
*/
protected $j;
}
第二实体:
class Entity2
{
/**
* @ORM\ManyToMany(targetEntity="App\MyBundle\Entity\Entity1", mappedBy="j")
*/
protected $i;
}
现在我在实体1和实体2之间有一个manyToMany连接,表格看起来像这样。
表名:entity1_entity2
字段:entity1_id,entity2_id
我想创建第三个实体并将其连接到具有oneToMany关系的相关表entity1_entity2?我怎样才能做到这一点?这个用例可能吗?