@@ 234-237 (lines=4) @@ | ||
231 | $op->getMeta() . ' ' . |
|
232 | $this->entityAlias . '.' . $value |
|
233 | ; |
|
234 | } else { |
|
235 | $whereCondition = $this->entityAlias . '.' . $fieldName . ' ' . |
|
236 | $op->getMeta() . ' :field_' . $fieldName . $salt; |
|
237 | } |
|
238 | } else { |
|
239 | $whereCondition = $this->entityAlias . '.' . $fieldName . ' ' . |
|
240 | $op->getMeta() . |
|
@@ 238-242 (lines=5) @@ | ||
235 | $whereCondition = $this->entityAlias . '.' . $fieldName . ' ' . |
|
236 | $op->getMeta() . ' :field_' . $fieldName . $salt; |
|
237 | } |
|
238 | } else { |
|
239 | $whereCondition = $this->entityAlias . '.' . $fieldName . ' ' . |
|
240 | $op->getMeta() . |
|
241 | ' ' . ':field_' . $fieldName . $salt; |
|
242 | } |
|
243 | ||
244 | $this->qBuilder->andWhere($whereCondition); |
|
245 | ||
@@ 288-292 (lines=5) @@ | ||
285 | $whereCondition = $relationEntityAlias . '.' . $fieldName . ' ' . |
|
286 | $op->getMeta() . |
|
287 | ' (:field_'.$fieldName . $salt . ')'; |
|
288 | } else { |
|
289 | $whereCondition = $relationEntityAlias . '.' . $fieldName . ' ' . |
|
290 | $op->getMeta() . |
|
291 | ' :field_'.$fieldName . $salt; |
|
292 | } |
|
293 | ||
294 | $this->qBuilder->andWhere($whereCondition); |
|
295 | if (isset($operator['substitution_pattern'])) { |