首頁 > 資料庫 > mysql教程 > 如何在原則2中實現額外欄位的多對多關係?

如何在原則2中實現額外欄位的多對多關係?

Barbara Streisand
發布: 2024-11-25 07:47:11
原創
1027 人瀏覽過

How to Implement a Many-to-Many Relationship with Extra Fields in Doctrine 2?

學說2 中附加欄位的多對多連結表

實體設定

學說2 解釋了多重多當包含附加屬性時,多對多關係作為一個實體,成為具有自己唯一識別碼的單獨實體。這對於追蹤與每個關係關聯的值至關重要。

要在數據庫中實現此功能,請考慮以下實體結構:

產品:

namespace Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Table(name="product")
 * @ORM\Entity()
 */
class Product
{
    /**
     * @ORM\Id()
     * @ORM\Column(type="integer")
     */
    protected $id;

    /**
     * @ORM\Column(name="product_name", type="string", length=50, nullable=false)
     */
    protected $name;

    /**
     * @ORM\OneToMany(targetEntity="Entity\Stock", mappedBy="product")
     */
    protected $stockProducts;
}
登入後複製

商店:

namespace Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Table(name="store")
 * @ORM\Entity()
 */
class Store
{
    /**
     * @ORM\Id()
     * @ORM\Column(type="integer")
     */
    protected $id;

    /**
     * @ORM\Column(name="store_name", type="string", length=50, nullable=false)
     */
    protected $name;

    /**
     * @ORM\OneToMany(targetEntity="Entity\Stock", mappedBy="store")
     */
    protected $stockProducts;
}
登入後複製

庫存:

namespace Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Table(name="stock")
 * @ORM\Entity()
 */
class Stock
{
    /**
     * @ORM\Column(type="integer")
     */
    protected $amount;

    /**
     * @ORM\ManyToOne(targetEntity="Entity\Store", inversedBy="stockProducts")
     * @ORM\JoinColumn(name="store_id", referencedColumnName="id", nullable=false)
     */
    protected $store;

    /**
     * @ORM\ManyToOne(targetEntity="Entity\Product", inversedBy="stockProducts")
     * @ORM\JoinColumn(name="product_id", referencedColumnName="id", nullable=false)
     */
    protected $product;
}
登入後複製

此設定建立了三個實體:產品、商店和庫存。 Stock 實體包含 amount 欄位作為附加屬性,使其與值形成多對多關係。

以上是如何在原則2中實現額外欄位的多對多關係?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板