Symfony2 + doctrine查询构建器 - 其中!= 1

时间:2013-01-24 08:54:10

标签: php symfony doctrine

我有一个为我的数据库创建查询的函数,如下所示:

public function getList($u, $t, $ls, $lf) {
        return $this->getEntityManager()
            ->createQuery('
                    SELECT
                        o,
                        u,
                        g,
                        r,
                        t,
                        p
                    FROM GameShelfUsersBundle:Own o
                    LEFT JOIN o.user u
                    LEFT JOIN o.game g
                    LEFT JOIN o.rate r
                    LEFT JOIN o.typo t
                    LEFT JOIN o.platforms p
                    WHERE u.id = :user
                    AND o.typo = :type
                    ORDER BY o.updated DESC
                ')
            ->setParameters(array(
            'user' => $u,
            'type' => $t
            ))
            ->setMaxResults($lf)
            ->setFirstResult($ls)
            ->getResult();
    }

我的问题是,如何将:type设为not in?我的意思是,我想这样使用它:

$type = '!= 1'
...
AND o.typo :type
...
'type' => $type

但它根本没用。使用$type = -1也无济于事。有没有办法,除了创建if / else语句和复制查询?

1 个答案:

答案 0 :(得分:1)

为什么不使用query builder ??

通过这种方式,您可以根据某些条件轻松自定义查询。

这是一个例子:

$q = $this
        ->createQueryBuilder('foo')
        ->select('foo')
        ->leftJoin('foo.bar', 'foobar')
        ->leftJoin('foobar.bar', 'foobarbar')
        ;
if($myVar > 0)
{
 $q->where('foobarbar.var = :myVar');
}
else
{
 $q->where('foobarbar.var = :staticValue');
} 
[...]

请记得最后致电return $q->getResult();