public QueryBase::conditionAggregate($field, $function = NULL, $value = NULL, $operator = '=', $langcode = NULL)
File
- core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 397
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; }
Please login to continue.