我想进行一个学说查询,其中每个参数可以有多个值(来自多个选择项)。
我有一个表,该表的'type'参数的值可以为1、2、3或4,而'online'参数的值可以为0或1。
到目前为止,我的查询如下:
$query = $this->createQueryBuilder('properties');
if (array_key_exists('type', $searchValues)) {
$types = $searchValues['type'];
$iterator = 0;
foreach ($types as $type) {
if ($iterator == 0) {
$query->andWhere('properties.idPropertyType = ' . $type);
} else {
$query->orWhere('properties.onlineProperties = ' . $type);
}
$iterator++;
}
}
if (array_key_exists('status', $searchValues)) {
$status = $searchValues['status'];
$iterator = 0;
foreach ($status as $statu) {
if ($iterator == 0) {
$query->andwhere('properties.onlineProperties = ' . $statu);
} else {
$query->andWhere('properties.onlineProperties = ' . $statu);
}
$iterator++;
}
}
$properties = $query->getQuery()->getResult();
在使用参数类型= 1且在线= 0和1进行搜索的情况下,我得到的结果中type是除1之外的另一个值。我理解原因,但无法找出进行查询的正确方法。
答案 0 :(得分:0)
您无需手动构建查询,只需使用QueryBuilder类中的(输入)功能即可。试试这个:
$query = $this->createQueryBuilder('properties');
if(array_key_exists('type', $searchValues)){
$types = $searchValues['type'];
$query->andWhere($query->expr()->in('properties.idPropertyType', $types));
}
if(array_key_exists('status', $searchValues)){
$status = $searchValues['status'];
$query->andwhere($query->expr()->in('properties.onlineProperties', $status));
}
$properties = $query->getQuery()->getResult();