学说发现'不等于'

时间:2012-12-29 21:09:31

标签: doctrine-orm

我该怎么做

WHERE id != 1

在学说中?

到目前为止我有这个

$this->getDoctrine()->getRepository('MyBundle:Image')->findById(1);

但我如何做“不等于”?

这可能很愚蠢,但我找不到任何参考?

由于

6 个答案:

答案 0 :(得分:46)

现在有一种方法可以使用Doctrine的标准。

How to use a findBy method with comparative criteria中可以看到一个完整的例子,但接下来是一个简短的答案。

use \Doctrine\Common\Collections\Criteria;

// Add a not equals parameter to your criteria
$criteria = new Criteria();
$criteria->where(Criteria::expr()->neq('prize', 200));

// Find all from the repository matching your criteria
$result = $entityRepository->matching($criteria);

答案 1 :(得分:32)

没有内置方法允许你打算做什么。

您必须向存储库添加一个方法,如下所示:

public function getWhatYouWant()
{
    $qb = $this->createQueryBuilder('u');
    $qb->where('u.id != :identifier')
       ->setParameter('identifier', 1);

    return $qb->getQuery()
          ->getResult();
}

希望这有帮助。

答案 2 :(得分:21)

为了给予更多灵活性,我会将下一个函数添加到我的存储库中:

public function findByNot($field, $value)
{
    $qb = $this->createQueryBuilder('a');
    $qb->where($qb->expr()->not($qb->expr()->eq('a.'.$field, '?1')));
    $qb->setParameter(1, $value);

    return $qb->getQuery()
        ->getResult();
}

然后,我可以在我的控制器中调用它:

$this->getDoctrine()->getRepository('MyBundle:Image')->findByNot('id', 1);

答案 3 :(得分:11)

根据Luis的回答,你可以做一些更像默认的findBy方法。

首先,创建一个将由所有实体使用的默认存储库类。

/* $config is the entity manager configuration object. */
$config->setDefaultRepositoryClassName( 'MyCompany\Repository' );

然后:

<?php

namespace MyCompany;

use Doctrine\ORM\EntityRepository;

class Repository extends EntityRepository {

    public function findByNot( array $criteria, array $orderBy = null, $limit = null, $offset = null )
    {
        $qb = $this->getEntityManager()->createQueryBuilder();
        $expr = $this->getEntityManager()->getExpressionBuilder();

        $qb->select( 'entity' )
            ->from( $this->getEntityName(), 'entity' );

        foreach ( $criteria as $field => $value ) {

            $qb->andWhere( $expr->neq( 'entity.' . $field, $value ) );
        }

        if ( $orderBy ) {

            foreach ( $orderBy as $field => $order ) {

                $qb->addOrderBy( 'entity.' . $field, $order );
            }
        }

        if ( $limit )
            $qb->setMaxResults( $limit );

        if ( $offset )
            $qb->setFirstResult( $offset );

        return $qb->getQuery()
            ->getResult();
    }

}

用法与findBy方法相同,例如:

$entityManager->getRepository( 'MyRepo' )->findByNot(
    array( 'status' => Status::STATUS_DISABLED )
);

答案 4 :(得分:8)

我很容易解决这个问题(没有添加方法),所以我将分享:

use Doctrine\Common\Collections\Criteria;

$repository->matching( Criteria::create()->where( Criteria::expr()->neq('id', 1) ) );

顺便说一句,我正在使用Zend Framework 2中的Doctrine ORM模块,我不确定这是否与其他任何情况兼容。

就我而言,我正在使用这样的表单元素配置:在单选按钮数组中显示除“guest”之外的所有角色。

$this->add(array(
    'type' => 'DoctrineModule\Form\Element\ObjectRadio',
        'name' => 'roles',
        'options' => array(
            'label' => _('Roles'),
            'object_manager' => $this->getEntityManager(),
            'target_class'   => 'Application\Entity\Role',
            'property' => 'roleId',
            'find_method'    => array(
                'name'   => 'matching',
                'params' => array(
                    'criteria' => Criteria::create()->where(
                        Criteria::expr()->neq('roleId', 'guest')
                ),
            ),
        ),
    ),
));

答案 5 :(得分:0)

我使用QueryBuilder来获取数据,

Incompatible types in assignment (expression has type "IntegerField[<nothing>, <nothing>]", variable has type "int")