Class Summary |
AbstractQuery | Base contract for ORM queries. |
Configuration | Configuration container for all configuration options of Doctrine.
|
EntityManager | The EntityManager is the central access point to ORM functionality. |
EntityNotFoundException | Exception thrown when a Proxy fails to retrieve an Entity result. |
EntityRepository | An EntityRepository serves as a repository for entities with generic as well as
business specific methods for retrieving entities.
|
Events | Container for all ORM events.
|
NativeQuery | Represents a native SQL query. |
NoResultException | Exception thrown when an ORM query unexpectedly does not return any results. |
NonUniqueResultException | Exception thrown when an ORM query unexpectedly returns more than one result. |
OptimisticLockException | OptimisticLockException |
PersistentCollection | A PersistentCollection represents a collection of elements that have persistent state.
|
Query | A Query object represents a DQL query. |
QueryBuilder | This class is responsible for building DQL query strings via an object oriented
PHP interface. |
UnitOfWork | The UnitOfWork is responsible for tracking changes to objects during an
"object-level" transaction and for writing out changes to the database
in the correct order. |