-1
我在實體映射中得到這個錯誤 關聯EventBundle \ Entity \ Articles#comentaires指的是不存在的擁有邊的字段EventBundle \ Entity \ Articles#Commentaire。 所以在實體文章 - >實體映射
/**
* @ORM\OneToMany(targetEntity="Articles", mappedBy="Commentaire")
*/
private $comentaires;
與實體評註
/**
* @ORM\ManyToOne(targetEntity="Articles", inversedBy="Commentaire")
* @ORM\JoinColumn(name="article_id", nullable=true)
*/
private $articles;
你的問題是什麼?看[mcve]如何提出問題 –