1

我每天使用 Doctrine 将远程 CSV 导入 MySQL。远程 CSV 的主键位于架构的中心,而不是位于开头或结尾。

这似乎使得使用原则将这个“id”分配为主键成为不可能。我必须保留这个主键以进行匹配。

    UKtradestransaction:
      type: entity
      repositoryClass: UktradesTransactionRepository
      table: uktrades_transactions
      fields:
        owner_id:
          type: integer
          length: 9
          nullable: true
        security_id:
          type: integer
          length: 9
        id:   # THIS NEEDS TO BE THE PRIMARY KEY
          type: integer
          length: 12
        exercise_price_uk:
          type: decimal
          length: 15
          scale: 4
          nullable: true
        update_date:
          type: date
          nullable: true
      id:
        id:  # THIS WILL NOT WORK 
          type: integer
          length: 12
          generator:
              strategy:auto

以上将不起作用,因为最终的 id 字段与中心的 id 重复。

如何将中间的“id”字段分配为主键?有没有办法将“id”字段定义为“字段”定义中的内联主键?

4

1 回答 1

1

我认为字段的顺序并不重要。Doctrine 允许确定字段中或之前的主键,这是我个人喜欢的语法。只需id从字段列表中删除 ,它仍将被视为一个字段。

于 2013-11-10T11:39:29.250 回答