使用 doctrine orm 如何在程式邏輯上實現在一張表完成兩個外鍵的設定(或則說一個實體完成兩個多對一的關係)?

來源:互聯網
上載者:User
關鍵字 php symfony doctrine2 mysql

這是之前開的一個問題的後續,參考連結

我使用的是 symfony2donctrine,裡面關於資料庫的操作,全部用的實體,官方推薦建立表與表之間的關係,我做了一些更改後,發現一個實體無法設定兩個多對一的關係,下面是問題的描述與再現:

鑒於上一問題大家不推薦使用物理外健,我做了一些程式方面的處理:

  1. 刪除資料表物理外健;

  2. 在程式中設定相應的實體關聯;

簡單的ER圖更新:

商品屬性關聯表goods_and_attribute相對於商品表goods以及attributes是多對一的關係啊,所以我在實體檔案中添加以下程式:

#src/AppBundle/Resources/config/doctrine/GoodsAndAttribute.orm.ymlAppBundle\Entity\GoodsAndAttribute:    type: entity    table: goods_and_attribute    id:        ...    fields:        ...    manyToOne:        goods:            targetEntity: Goods            inversedBy: goodsAndAttribute            joinColumn:                name: goods_id                referencedColumnName: id    manyToOne:        attribute:            targetEntity: Attributes            inversedBy: goodsAndAttribute            joinColum:                name: attribute_id                referencedColumnName: id    lifecycleCallbacks: {  }

在查詢資料表的時候我發現只能得到其中一個關係的資訊:

$query = $em    ->createQuery(        'SELECT ga FROM AppBundle:GoodsAndAttribute ga    WHERE ga.id = 1');    

orm中如何關聯多個表,實現相應資訊的查詢?例如

$query = $em        ->createQuery(            'SELECT ga, g, a FROM ApplicationSonataMallBundle:GoodsAndAttribute ga            JOIN ga.goods g             JOIN ga.attribute a         WHERE ga.id = 1');

回複內容:

這是之前開的一個問題的後續,參考連結

我使用的是 symfony2donctrine,裡面關於資料庫的操作,全部用的實體,官方推薦建立表與表之間的關係,我做了一些更改後,發現一個實體無法設定兩個多對一的關係,下面是問題的描述與再現:

鑒於上一問題大家不推薦使用物理外健,我做了一些程式方面的處理:

  1. 刪除資料表物理外健;

  2. 在程式中設定相應的實體關聯;

簡單的ER圖更新:

商品屬性關聯表goods_and_attribute相對於商品表goods以及attributes是多對一的關係啊,所以我在實體檔案中添加以下程式:

#src/AppBundle/Resources/config/doctrine/GoodsAndAttribute.orm.ymlAppBundle\Entity\GoodsAndAttribute:    type: entity    table: goods_and_attribute    id:        ...    fields:        ...    manyToOne:        goods:            targetEntity: Goods            inversedBy: goodsAndAttribute            joinColumn:                name: goods_id                referencedColumnName: id    manyToOne:        attribute:            targetEntity: Attributes            inversedBy: goodsAndAttribute            joinColum:                name: attribute_id                referencedColumnName: id    lifecycleCallbacks: {  }

在查詢資料表的時候我發現只能得到其中一個關係的資訊:

$query = $em    ->createQuery(        'SELECT ga FROM AppBundle:GoodsAndAttribute ga    WHERE ga.id = 1');    

orm中如何關聯多個表,實現相應資訊的查詢?例如

$query = $em        ->createQuery(            'SELECT ga, g, a FROM ApplicationSonataMallBundle:GoodsAndAttribute ga            JOIN ga.goods g             JOIN ga.attribute a         WHERE ga.id = 1');
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.