function QueryFactory::get
Instantiates an entity query for a given entity type.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'.
Return value
\Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type.
Overrides QueryFactoryInterface::get
1 method overrides QueryFactory::get()
- QueryFactory::get in core/
modules/ workspaces/ src/ EntityQuery/ QueryFactory.php - Instantiates an entity query for a given entity type.
File
-
core/
lib/ Drupal/ Core/ Entity/ Query/ Sql/ QueryFactory.php, line 49
Class
- QueryFactory
- Factory class creating entity query objects for the SQL backend.
Namespace
Drupal\Core\Entity\Query\SqlCode
public function get(EntityTypeInterface $entity_type, $conjunction) {
$class = QueryBase::getClass($this->namespaces, 'Query');
return new $class($entity_type, $conjunction, $this->connection, $this->namespaces);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.