0

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

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();
    }

我的问题是,如何设置:typenot in?我的意思是,我想这样使用它:

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

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

4

1 回答 1

1

你为什么不使用查询生成器

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

这是一个例子:

$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();记得最后打电话

于 2013-01-24T09:08:20.873 回答