public function QueryBase::conditionAggregate

Implements \Drupal\Core\Entity\Query\QueryAggregateInterface::conditionAggregate().

File

drupal/core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 354
Contains \Drupal\Core\Entity\Query\QueryBase.

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public function conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL) {
  $this
    ->aggregate($field, $function, $langcode);
  $this->conditionAggregate
    ->condition($field, $function, $value, $operator, $langcode);
  return $this;
}