我已经在Symfony中解决了几个星期的问题并且无处可去。
事件和播放列表具有一对多的关系。 schema.yml文件的相关部分:
Event:
actAs:
Timestampable: ~
columns:
date:
type: date(25)
default: '0000-00-00'
notnull: true
name:
type: string(60)
notnull: true
host_title_id:
type: integer
broadcast_format:
type: enum(7)
values:
- Radio
- Live
- Podcast
- Video
default: Podcast
notnull: true
long_description:
type: string()
notnull: true
geography_id:
type: integer
default: NULL
has_been_emailed:
type: boolean
default: '0'
notnull: true
active:
type: boolean
default: '0'
notnull: true
Playlist:
actAs:
Timestampable: ~
columns:
show_time: string(40)
recorded:
type: boolean
default: '0'
notnull: true
title: string(100)
event_id: integer
podcast_id: integer
relations:
Event:
local: event_id
foreign: id
foreignAlias: Playlists
以下代码没问题,并导致对数据库的一次查询:
return Doctrine_Query::create()
->from('Playlist P')
->leftJoin('P.Event E')
->limit(1)->execute();
以下代码不正常,并导致对数据库的SIX查询:
return Doctrine_Query::create()
->from('Event E')
->leftJoin('E.Playlists P')
->limit(1)->execute();
更糟糕的是,在第二个语句中,返回的对象在[Playlists]部分中没有数据。即它看起来像这样:
sfOutputEscaperArrayDecorator Object
(
[count:sfOutputEscaperArrayDecorator:private] => 1
[value:protected] => Array
(
[0] => Array
(
[id] => 1
[date] => 1998-08-01
[name] => Showname
[host_title_id] => 1
[broadcast_format] => Radio
[long_description] => This is an episode.
[geography_id] => 25
[has_been_emailed] => 1
[active] => 1
[created_at] => 0000-00-00 00:00:00
[updated_at] => 0000-00-00 00:00:00
[Playlists] => Array
(
)
)
)
[escapingMethod:protected] => esc_specialchars
)
这两个订单有什么区别?我不明白。
更新:如果我在架构和DQL中将名为播放列表的关系更改为TestPlaylists,则效果会更好。它仍会激发一个超出我预期的查询,但返回的对象会填充正确的数据。
答案 0 :(得分:1)
您使用的是什么Symfony版本?我刚刚在Symfony 1.4.18项目中测试了您的模式,当我从Doctrine查询中取出限制时,它们只向DB创建一个查询。
如果我保留限制,第二个Doctrine查询创建了一个额外的数据库查询(即在事件上选择不同)。