public function QueryBase::notExists

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

Overrides QueryInterface::notExists

File

drupal/core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 112
Definition of Drupal\Core\Entity\Query\QueryBase.

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

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