我有一個實體Article20000Information
,用以下幾個領域:id
,description
,manufacturer_id
,supplier_id
如何根據ID拉取信息?
我有另一個實體,Organisation
。它有一個公司名單(兩個製造商&供應商),每個公司都有一個id
。
我也有一個呈現Article20000Information數據列表的頁面。目前,它只是顯示在表格中的數據:
| id | Description | Manufacturer | Supplier | Price |
|----|-------------|--------------|----------|--------|
| 1 | thing1 | 2 | 5 | 34 |
| 2 | thing2 | 5 | 2 | 23 |
| 3 | thing3 | 3 | 4 | 25 |
我需要的是對製造商和供應商列中顯示從organisation
表name
值的基礎上,顯示的ID。
什麼是最好的方式去做這件事?
[join](http://en.wikipedia.org/wiki/Join_%28SQL%29) –
您是否使用'Doctrine'作爲ORM? –
@AlexandruOlaru是 – benoliver999