3

我已经在 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();

以下代码不正确,并导致对数据库的六次查询:

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 中将名为 Playlists 的关系更改为 TestPlaylists,效果会更好。它仍然比我预期的多触发一个查询,但是返回的对象填充了正确的数据。

4

1 回答 1

1

您使用的是什么 Symfony 版本?我刚刚在 Symfony 1.4.18 项目中测试了您的模式,当我从 Doctrine 查询中取出限制时,它们都只创建一个对数据库的查询。

如果我在那里保持限制,第二个 Doctrine 查询会创建一个额外的数据库查询(即在事件上选择不同的)。

于 2013-01-27T22:06:28.080 回答