如何在Doctrine 1.2中做多态关联?

时间:2014-01-10 09:17:29

标签: symfony-1.4 polymorphic-associations doctrine-1.2

是否可以在symfony 1.4中与doctrine 1.2(!)进行多态关联?

例如,我在schema.yml中有以下内容:

alBillingElement:
  actAs:
    Timestampable:

  columns:
     id: {type: integer(11), primary: true, autoincrement: true}
     object_type: {type: varchar(20)}
     object_id: {type: integer(11)}
     task: {type: varchar(20)}
     parameter: {type: text}
     amount: {type: float}

object_type包含object_id引用的对象的模型名称。 我可以以某种方式定义一个关系,以便我可以使用关系查询“对象”吗?

0 个答案:

没有答案