Symfony2和Doctrine2的新手,我在我的实体存储库中有一个函数,用于在表单提交后搜索实体。输入是数组$ get,其中包含$ get ['name'] ='aname'等表单字段。
我的问题是,当我使用id,id或名称请求时,只有一个名称就可以了,我的所有实体都匹配,因为已构建的查询没有where子句。
这是我的代码:
public function search(array $get, $flag = False){
/* Indexed column (used for fast and accurate table cardinality) */
$alias = 'd';
/* DB table to use */
$tableObjectName = 'mysiteMyBundle:DB';
$qb = $this->getEntityManager()
->getRepository($tableObjectName)
->createQueryBuilder($alias)
->select($alias.'.id');
$arr = array();
//Simple array, will grow after problem solved
$numericFields = array(
'id');
$textFields = array(
'name');
while($el = current($get)) {
$field = key($get);
if ( $field == '' or $field == Null or $el == '' or $el == Null ) {
next($get);
}
if ( in_array($field,$numericFields) ){
if ( is_numeric($el) ){
$arr[] = $qb->expr()->eq($alias.".".$field, $el);
}
} else {
if ( in_array($field,$textFields) ) {
$arr[] = $qb->expr()->like($alias.".".$field, $qb->expr()->literal('%'.$el.'%') );
}
}
next($get);
}
if(count($arr) > 0) $qb->andWhere(new Expr\Orx($arr));
else unset($arr);
$query = $qb->getQuery();
if($flag)
return $query;
else
return $query->getResult();
}
仅使用名称(ex“myname”)输入生成的查询是:
SELECT d0_.id AS id0 FROM DB d0_
应该是:
SELECT d0_.id AS id0 FROM DB d0_ WHERE d0_.name LIKE '%myname%'
我的代码出了什么问题?
谢谢!
答案 0 :(得分:0)
我不知道它是否相关,但不要使用“OR”或“AND”运算符,因为它们与经典的“&&”有不同的含义。或“||”。 cf http://php.net/manual/en/language.operators.logical.php
首先,将“AND”替换为“&&”,将“OR”替换为“||”。
答案 1 :(得分:0)
您应该使用setParameter method
$query->where('id = :id')->setParameter('id', $id);