搜尋

首頁  >  問答  >  主體

symfony - 有沒有doctrine yaml定義資料庫shema的比較詳盡的文件?

例如symfony2中的例子:

Ens\JobeetBundle\Entity\CategoryAffiliate:
  type: entity
  table: category_affiliate
  id:
    id:
      type: integer
      generator: { strategy: AUTO }
  manyToOne:
    category:
      targetEntity: Category
      inversedBy: category_affiliates
      joinColumn:
        name: category_id
        referencedColumnName: id
    affiliate:
      targetEntity: Affiliate
      inversedBy: category_affiliates
      joinColumn:
        name: affiliate_id
        referencedColumnName: id

比較詳盡的解釋如generator這個option,以及manyToOne和OneToMany的option的文檔
doctrine官網我找到的並不太清楚

伊谢尔伦伊谢尔伦2747 天前552

全部回覆(1)我來回復

  • 给我你的怀抱

    给我你的怀抱2017-05-16 16:47:27

    http://docs.doctrine-project.org/en/l...

    回覆
    0
  • 取消回覆