"Enter"a basıp içeriğe geçin

Symfony Manytomany kullanımı

Symfony Manytomany kullanımı

1. entity e yazacagımız:

    /**
     * @ORM\ManyToMany(targetEntity="RtStokKategori", mappedBy="RtMenu")
     */
    public $RtStokKategori;

2. entity e yazacagımız:

    /**
     * @ORM\ManyToMany(targetEntity="RtMenu", inversedBy="RtStokKategori")
     * @ORM\JoinTable(name="rt_menu_ve_kategori")
     */
    public $RtMenu;

Veritabanını Güncelliyelim

php bin/console doctrine:schema:update --force