我正在使用Symfony2,我有这个模式:
Products:
id
name
value
List:
id
owner_name
created_at
status
我阅读了如何在 Doctrine2 文档中与连接表建立关系,一切正常。但是现在,我想在表中添加一个字段(状态),products_list具有:
products_list:
product_id
list_id
status
有什么帮助吗?
谢谢:)
如果关联应该保持 oneToMany,则必须创建一个 thrid 实体。
products_list
product(OneToOne)
list(ManyToOne)
status
list:
products_list(OneToMany)
products:
products_list(OneToOne)