是否可以在 Doctrine2 的关联中创建外部字段。主要目的是建立一种关联。
例如,我们有联系人和机会。我需要具有这种关联类型的联系人和机会之间的关联。
数据示例:
contact_id | opportunity_id | association_type
------------------------------------------------------
<contact_id> | <opportunity_id> | <Executive Sponsor>
<contact_id> | <opportunity_id> | <Business Evaluator>
是否可以在 Doctrine2 中实施?
这是我的协会(YAML):
Opportunity:
type: entity
table: opportinity
...
...
...
manyToMany:
contacts:
targetEntity: Contact
joinTable:
name: opportinities_contacts
joinColumns:
opportunity_id:
referencedColumnName: id
inverseJoinColumns:
contact_id:
referencedColumnName: id
谢谢