2014-01-16 211 views

回答

1

按照圖中,

一篇文章可以有許多意見和一個視頻可以有很多評論。 因此,評論實體與視頻實體和文章實體具有多對一的關係。

如果你是教義和YAML元數據文件的實體,所以,你想用`Video`鏈接的`Article`定義註釋YAML的文件之間的關係如下

manyToOne: 
    article: 
     targetEntity: Path\to\ArtcleBunlde\Entity\Article 
     joinColumn: 
     name: article 
     referencedColumnName: id 
    video: 
     targetEntity: Path\to\VideoBundle\Entity\Video 
     joinColumn: 
     name: video 
     referencedColumnName: id 
+0

我想你應該用'Video'替換'User'。 –