public function ConditionAggregate::notExists

Implements \Drupal\Core\Entity\Query\ConditionInterface::notExists().

Overrides ConditionAggregateInterface::notExists

File

drupal/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Entity/ConditionAggregate.php, line 59
Contains \Drupal\field_sql_storage\Query\ConditionAggregate.

Class

ConditionAggregate
Defines the aggregate condition for sql based storage.

Namespace

Drupal\field_sql_storage\Entity

Code

public function notExists($field, $function, $langcode = NULL) {
  return $this
    ->condition($field, $function, NULL, 'IS NULL', $langcode);
}