如何使用 Doctrine 2 创建与额外字段的多对多自引用关联?

How to create many-to-many self-referencing association with extra fields by using Doctrine 2?

思路如下:有产品简单复合复合产品可能由少数简单产品组成,例如:

有产品 "Cocktail" - 一种 简单 产品,具有自己的特点(名称、描述、价格等。 ),并且有一个 化合物 产品 - "Fountain of cocktails," 其中包括产品 "Cocktail"作为主要成分。一个"Fountain of cocktails"由50个"Cocktail".

组成

现在我有 Product 实体,它与 self-referencing多对多 关系:

<?php

namespace CT\AppBundle\Entity;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

/**
 * Class Product
 *
 * @ORM\Entity
 * @ORM\Table(name="products")
 */
class Product
{
    /**
     * @ORM\id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     *
     * @var int
     */
    protected $id;

    /**
     * @ORM\Column(type="string")
     *
     * @var string
     */
    protected $name;

    /**
     * @ORM\Column(
     *     name="description",
     *     type="text"
     * )
     *
     * @var string
     */
    protected $desc;

    /**
     * @ORM\Column(type="float")
     *
     * @var float
     */
    protected $price;

    /**
     * @ORM\Column(
     *     name="count_type",
     *     type="string"
     * )
     *
     * @var string
     */
    protected $countType;

    /**
     * @ORM\Column(
     *     name="default_count",
     *     type="integer",
     *     options={"unsigned": true}
     * )
     *
     * @var int
     */
    protected $defCount;

    /**
     * @ORM\Column(type="boolean")
     *
     * @var bool
     */
    protected $isCountable;

    /**
     * @ORM\Column(type="boolean")
     *
     * @var bool
     */
    protected $isCompound;

    /**
     * @ORM\ManyToMany(
     *     targetEntity="Product",
     *     mappedBy="components"
     * )
     *
     * @var ArrayCollection
     */
    private $products;

    /**
     * @ORM\ManyToMany(
     *     targetEntity="Product",
     *     inversedBy="products"
     * )
     * @ORM\JoinTable(
     *     name="compound_products",
     *     joinColumns={
     *         @ORM\JoinColumn(
     *             name="main_product_id",
     *             referencedColumnName="id"
     *         )
     *     },
     *     inverseJoinColumns={
     *         @ORM\JoinColumn(
     *             name="component_product_id",
     *             referencedColumnName="id"
     *         )
     *     }
     * )
     *
     * @var ArrayCollection
     */
    private $components;

    /**
     * Product constructor.
     */
    public function __construct()
    {
        $this->products = new ArrayCollection();
        $this->components = new ArrayCollection();
    }

    // Getters & setters...
}

我想添加额外字段 金额compound_products table 用于设置一个复合产品中简单产品的数量,得到一个输出:http://prntscr.com/cgdvc3

我找到了一种解决方案,但我不太明白如何将其应用到我的问题中:Doctrine many to many self referencing with extra columns

你能解释一下我如何为我的任务添加这个额外的字段来保存多对多自引用关系吗?或者如果您有更好的解决方案可以分享吗?

您需要为 link 您的实体创建一个单独的实体。类似于 ProductCompound。

然后 link 它两次到您的产品实体,对于每个关系。

/**
 * Class ProductCompound
 *
 * @ORM\Entity
 * @ORM\Table(name="compound_products")
 */
class ProductCompound
{
    /**
     * @ORM\id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     *
     * @var int
     */
    protected $id;

    /**
     * @ORM\ManyToOne(
     *     targetEntity="Product",
     *     inversedBy="products"
     * )
     * @ORM\JoinColumn(name="main_product_id", referencedColumnName="id"
     *
     * @var ArrayCollection
     */
    protected $mainProduct;

    /**
     * @ORM\ManyToOne(
     *     targetEntity="Product",
     *     inversedBy="components"
     * )
     * @ORM\JoinColumn(name="component_product_id", referencedColumnName="id"
     *
     * @var ArrayCollection
     */
    protected $componentProduct;

    /**
     * @var double
     *
     * @ORM\Column(name="amount", type="float", nullable=true)
     */
    protected $amount;

并修改产品:

    /**
     * Class Product
     *
     * @ORM\Entity
     * @ORM\Table(name="products")
     */
    class Product
    {
...

    /**
     * @ORM\OneToMany(
     *     targetEntity="ProductCompound",
     *     mappedBy="mainProduct"
     * )
     *
     * @var ArrayCollection
     */
    private $productLinks;

    /**
     * @ORM\OneToMany(
     *     targetEntity="ProductCompound",
     *     mappedBy="componentProduct"
     * )
     *
     * @var ArrayCollection
     */
    private $componentLinks;