2013-07-11 14 views
11

Sto provando a impostare alcune relazioni ManyToOne/OneToMany su oggetti nel mio database usando Doctrine (2.2.3+) tramite Symfony2 (2.3.0) e sto ottenendo uno strano errore. Qui ci sono le parti pertinenti degli oggetti (molti attributi di un prodotto):Doctrine OneToMany error error

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

    ... 

    /** 
    * 
    * @OneToMany(targetEntity="ProductAttributes", mappedBy="product") 
    */ 
    protected $product_attributes; 

    public function __construct() { 
     $this->product_attributes = new \Doctrine\Common\Collections\ArrayCollection(); 
    } 
} 

/** 
* ProductAttributes 
* 
* @ORM\Table(name="product_attributes") 
* @ORM\Entity 
*/ 
class ProductAttributes 
{ 
    /** 
    * @var integer 
    * 
    * @ORM\Column(name="pa_id", type="integer") 
    * @ORM\Id 
    * @ORM\GeneratedValue(strategy="AUTO") 
    */ 
    protected $pa_id; 

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

    ... 

    /** 
    * 
    * @ManyToOne(targetEntity="Product", inversedBy="product_attributes") 
    * @JoinColumn(name="product_id", referencedColumnName="id") 
    */ 
    protected $product; 
} 

Quando faccio funzionare l'ordine

php app/console doctrine:generate:entities BundleName 

ottengo il seguente errore:

[Doctrine\Common\Annotations\AnnotationException]                            
[Semantical Error] The annotation "@OneToMany" in property LVMount\LVMBundle\Entity\Product::$product_attributes was never imported. Did you maybe forget to add a "use" statement for this annotation? 

ho ha esaminato i documenti di Doctrine e non vede alcun riferimento a un'istruzione "use" per le coppie ManyToOne/OneToMany. Cosa sta succedendo?

risposta

43

La sintassi delle annotazioni non è completa.

È possibile visualizzare la sintassi corretta per qualsiasi annotazione di dottrina riportata di seguito.

/** 
* @ORM\******** 
*/ 

Quindi, nel tuo caso dovrebbe apparire come il seguente.

/** 
* @ORM\OneToMany(targetEntity="ProductAttributes", mappedBy="product") 
*/ 

vorrete anche per fissare le annotazioni nell'entità ProductAttributes.

+0

Grazie! Sto ancora lavorando con Symfony 2.7.3 –