function QueryFactory::__construct

Constructs a QueryFactory object.

Parameters

\Drupal\Core\Database\Connection $connection: The database connection used by the entity query.

2 methods override QueryFactory::__construct()
PgsqlQueryFactory::__construct in core/modules/workspaces/src/EntityQuery/PgsqlQueryFactory.php
Constructs a PgsqlQueryFactory object.
QueryFactory::__construct in core/modules/workspaces/src/EntityQuery/QueryFactory.php
Constructs a QueryFactory object.

File

core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php, line 38

Class

QueryFactory
Factory class creating entity query objects for the SQL backend.

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function __construct(Connection $connection) {
  $this->connection = $connection;
  $this->namespaces = QueryBase::getNamespaces($this);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.