我正在使用Doctrine中的ORM从Postgres DB生成xml文件。我有复合主键的问题。
我有三个测试表:payment_plan,system_string,payment_plan_option。
表:
payment_plan:
id PK
name_string_id PK FK (system_string.id)
system_string:
id PK
value
language_id
payment_plan_option:
id PK
payment_plan_id PK FK (payment_plan.id)
price
当我为表 payment_plan 和 payment_plan_option 生成XML时,一切正常。
当我为表 payment_plan 和 system_string 生成时,我收到错误:
[Doctrine\ORM\Mapping\MappingException]
Single id is not allowed on composite primary key in entity Api\Entity\PaymentPlan
我已尝试在payment_plan中添加一些字段,因此它看起来像payment_plan_option但没有效果。