Method |
Description |
|
__construct ( Doctrine\OrientDB\Binding\BindingInterface $binding, Configuration $configuration ) |
Instatiates a new Mapper, injecting the $mapper that will be used to
hydrate record retrieved through the $binding. |
|
clear ( stdClass $object = null ) |
|
|
contains ( stdClass $object ) |
|
|
detach ( stdClass $object ) |
|
|
execute ( Query $query, $fetchPlan = null ) : array | Mixed |
Executes a $query against OrientDB. |
|
find ( string $rid, string $fetchPlan = '*:0' ) : Doctrine\ODM\OrientDB\Proxy\Proxy | object |
Queries for an object with the given $rid. |
|
findRecords ( array $rids, boolean $lazy = false, mixed $fetchPlan = '*:0' ) : Doctrine\ODM\OrientDB\Collections\ArrayCollection |
Queries for an array of objects with the given $rids. |
|
flush ( ) |
|
|
getBinding ( ) : Doctrine\OrientDB\Binding\BindingInterface |
Returns the binding instance used to communicate OrientDB. |
|
getCache ( ) : Doctrine\Common\Cache\Cache |
Returns the Cache. |
|
getClassMetadata ( string $class ) : Doctrine\Common\Persistence\Mapping\ClassMetadata |
Gets the $class Metadata. |
|
getConfiguration ( ) : Configuration |
Returns the Configuration of the Manager |
|
getInflector ( ) : Doctrine\Common\Inflector\Inflector |
Returns the Inflector associated with this manager. |
|
getMetadataFactory ( ) : Doctrine\Common\Persistence\Mapping\ClassMetadataFactory |
Returns the Metadata factory associated with this manager. |
|
getProxyFactory ( ) : ProxyFactory |
Returns the ProxyFactory associated with this manager. |
|
getReference ( $rid ) : Doctrine\ODM\OrientDB\Proxy\Proxy |
Returns a reference to an entity. It will be lazily and transparently
loaded if anything other than the identifier is touched. |
|
getRepository ( string $className ) : Repository |
Returns the Repository class associated with the $class. |
|
getUnitOfWork ( ) |
|
|
initializeObject ( object $obj ) |
Helper method to initialize a lazy loading proxy or persistent collection. |
|
merge ( stdClass $object ) |
|
|
persist ( stdClass $object ) |
|
|
refresh ( stdClass $object ) |
|
|
remove ( stdClass $object ) |
|
|