「Lesson」と「MutorSche」という名前の 2 つのテーブルがあります。
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;