我正在开始使用Symfony开发。不幸的是,我浪费时间使用Symfony2学说编写简单的SQL查询。
这是我的问题:我不是要简单地加入并获得所需的数据。
我的查询:
$query = $this->getDoctrine()->getManager()
->createQuery(
'SELECT p, s FROM DemoProductBundle:Product p LEFT JOIN DemoProductBundle:SynchronizationSetting s WITH p.id = s.id_product ORDER BY p.id ASC'
);
只有选择S时,一切正常工作,但是如果我添加选择P,则查询返回null。也许同步网络有些问题?我自己设置了身份列。
DemoProductBundleEntitySynchronizationSetting:
type: entity
table: synchronization_setting
id:
id_product:
type: integer
nullable: false
unsigned: true
comment: ''
id: true
generator:
strategy: IDENTITY
fields:
sonia:
type: string
nullable: true
length: 1
fixed: true
comment: ''
default: '0'
strefa:
type: string
nullable: true
length: 1
fixed: true
comment: ''
default: '0'
open:
type: string
nullable: true
length: 1
fixed: true
comment: ''
default: '0'
internet:
type: string
nullable: true
length: 1
fixed: true
comment: ''
default: '0'
oneToOne:
idProduct:
targetEntity: Product
cascade: { }
mappedBy: null
inversedBy: null
joinColumns:
id_product:
referencedColumnName: id
orphanRemoval: false
lifecycleCallbacks: { }
问题是通过使用不正确的列名引起的。Symfony Entity Generator更改名称,例如从ID_Product到IDProduct。
so:
SELECT p, s FROM DemoProductBundle:Product p
LEFT JOIN DemoProductBundle:SynchronizationSetting s WITH p.id = s.id_product ORDER BY p.id ASC
shoud be:
SELECT p, s FROM DemoProductBundle:Product p
LEFT JOIN DemoProductBundle:SynchronizationSetting s WITH p.id = **s.idProduct** ORDER BY p.id ASC
现在工作正常。