One-to-Many-to-One with attributes Form with Symfony 3 / Doctrine
问题 Here is the problem : I have a model with 3 classes person person_job job A person can have several jobs, any job-person relation can have a "date_start" attribute, "date_end", and "comment". So I built this model with a jointable (person_job) holding these attributes, and making the relationship on 2 manyToOne attributes called person and job (generated with doctrine annotations) Person attributes looks like : /** * @var string * @ORM\Column(name="name",type="string",length=255,nullable