我有两张名为“Lesson”和“MutorSche”的表
MutorSche 有列 'lessonBooked' 课程有列 'booked'
我想彼此拥有外键。但我不确定 inversedBy 和 mappedBy 的含义。这些是我的绳子。有什么不对的吗??
请帮助我..谢谢..
/**
*
* @ORM\OneToMany(targetEntity="Acme\UserBundle\Entity\Lesson", inversedBy="booked*removethis : name of the variable in Lesson.php*")
* @ORM\JoinColumn(name="lessonBooked", referencedColumnName="id")
*/
private $lessonBooked = null;
/**
*
* @ORM\ManyToOne(targetEntity="Acme\UserBundle\Entity\MutorSche", mappedBy="lessonBooked*removethis : name of the variable in MutorSche.php*")
*/
private $booked;