Mysql
 sql >> Database >  >> RDS >> Mysql

Unisciti alla tabella in Symfony 2

Devi scegliere il Mappatura delle associazioni di Dottrine a seconda della relazione che si desidera tra queste entità.

Altri riferimenti utili da leggere per te:

Aggiorna in base ai commenti e alla modifica del post:

<?php

namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Aktiviteter
 */
class Aktiviteter
{
/**
 * @var integer
 */
private $id;

/**
 * @var string
 */
private $name;    

/**
 * Get id
 *
 * @return integer 
 */
public function getId()
{
    return $this->id;
}

/**
 * Set name
 *
 * @param string $name
 * @return Aktiviteter
 */
public function setName($name)
{
    $this->name = $name;

    return $this;
}

/**
 * Get name
 *
 * @return string 
 */
public function getName()
{
    return $this->name;
}    

/**
 * @ManyToMany(targetEntity="Kommune")
 * @JoinTable(name="kommunes")
 **/
private $kommunes;

}

Come ha fatto @Isa Bek rispondi

NOTA :Quando si mappano le associazioni bidirezionali è importante comprendere il concetto di il possesso e l'inverso e ricorda che non è necessario impostare l'ID entità della relazione perché Doctrine lo gestisce automaticamente come vedrai dopo che la mappatura verrà applicata con il comando:$ php app/console doctrine:schema:update --force dalla tua console.