Doctrine 2 association without foreign key constraints

后端 未结 6 1553
醉酒成梦
醉酒成梦 2020-12-16 03:40

I\'m in the process of converting a legacy PHP application to Symfony 2. The application data is not very consistent at the moment, so I would like to avoid creating foreign

6条回答
  •  有刺的猬
    2020-12-16 04:23

    You should leave out the ManyToMany and the JoinColumn definitions and handle the Manufacturer property in your custom Product repository with a public getManufacturer method that extends the auto generated Product repository.

提交回复
热议问题