Esempio n. 1
0
 /**
  * Прнименяет простое условие на выборку
  * @param ISelectBuilder $selectBuilder
  * @return $this
  */
 protected function applySimpleCondition(ISelectBuilder $selectBuilder)
 {
     $selectBuilder->expr($this->fieldColumn, $this->operator, $this->placeholder);
     $selectBuilder->bindValue($this->placeholder, $this->expression, $this->field->getDataType());
     return $this;
 }