You are here

interface Selectable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php \Doctrine\Common\Collections\Selectable

Interface for collections that allow efficient filtering with an expression API.

Goal of this interface is a backend independent method to fetch elements from a collections. {@link Expression} is crafted in a way that you can implement queries from both in-memory and database-backed collections.

For database backed collections this allows very efficient access by utilizing the query APIs, for example SQL in the ORM. Applications using this API can implement efficient database access without having to ask the EntityManager or Repositories.

@author Benjamin Eberlei <kontakt@beberlei.de> @since 2.3

Hierarchy

  • interface \Doctrine\Common\Collections\Selectable

Expanded class hierarchy of Selectable

All classes that implement Selectable

File

vendor/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php, line 37

Namespace

Doctrine\Common\Collections
View source
interface Selectable {

  /**
   * Selects all elements from a selectable that match the expression and
   * returns a new collection containing these elements.
   *
   * @param Criteria $criteria
   *
   * @return Collection
   */
  public function matching(Criteria $criteria);

}

Members

Namesort descending Modifiers Type Description Overrides
Selectable::matching public function Selects all elements from a selectable that match the expression and returns a new collection containing these elements. 1