-1
엔티티 매핑에서이 오류가 발생합니다. 연관 EventBundle \ Entity \ Articles # comentaires는 존재하지 않는 소유 필드 인 EventBundle \ Entity \ Articles # Commentaire를 참조합니다. 그래서 엔티티 기사에서 ->엔티티 매핑
/**
* @ORM\OneToMany(targetEntity="Articles", mappedBy="Commentaire")
*/
private $comentaires;
과 기업 Commentaire
/**
* @ORM\ManyToOne(targetEntity="Articles", inversedBy="Commentaire")
* @ORM\JoinColumn(name="article_id", nullable=true)
*/
private $articles;
무엇이 문제입니까? 질문하는 방법은 [mcve]를 참조하십시오. –