diff --git a/cookbook/en.txt b/cookbook/en.txt
new file mode 100644
index 000000000..db1b17496
--- /dev/null
+++ b/cookbook/en.txt
@@ -0,0 +1,8 @@
++ Getting Started XML-Edition
++ Implementing ArrayAccess for domain objects
++ Implementing the NOTIFY changetracking policy
++ Validation of Entities
++ Implementing wakeup or clone
++ Integrating with CodeIgniter
++ DQL Custom Walkers
++ DQL User Defined Functions
\ No newline at end of file
diff --git a/cookbook/en/dql-custom-walkers.txt b/cookbook/en/dql-custom-walkers.txt
new file mode 100644
index 000000000..48d4840a4
--- /dev/null
+++ b/cookbook/en/dql-custom-walkers.txt
@@ -0,0 +1,174 @@
+# Extending DQL in Doctrine 2: Custom AST Walkers
+
+The Doctrine Query Language (DQL) is a propriotary sql-dialect that substitutes
+tables and columns for Entity names and their fields. Using DQL you write a query
+against the database using your entities. With the help of the metadata you
+can write very concise, compact and powerful queries that are then translated
+into SQL by the Doctrine ORM.
+
+In Doctrine 1 the DQL language was not implemented using a real parser. This
+made modifications of the DQL by the user impossible. Doctrine 2 in constrast
+has a real parser for the DQL language, which transforms the DQL statement
+into an [Abstract Syntax Tree](http://en.wikipedia.org/wiki/Abstract_syntax_tree)
+and generates the appropriate SQL statement for it. Since this process is
+deterministic Doctrine heavily caches the SQL that is generated from any given DQL query,
+which reduces the performance overhead of the parsing process to zero.
+
+You can modify the Abstract syntax tree by hooking into DQL parsing process
+by adding a Custom Tree Walker. A walker is an interface that walks each
+node of the Abstract syntax tree, thereby generating the SQL statement.
+
+There are two types of custom tree walkers that you can hook into the DQL parser:
+
+- An output walker. This one actually generates the SQL, and there is only ever one of them. We implemented the default SqlWalker implementation for it.
+- A tree walker. There can be many tree walkers, they cannot generate the sql, however they can modify the AST before its rendered to sql.
+
+Now this is all awfully technical, so let me come to some use-cases fast
+to keep you motivated. Using walker implementation you can for example:
+
+* Modify the AST to generate a Count Query to be used with a paginator for any given DQL query.
+* Modify the Output Walker to generate vendor-specific SQL (instead of ANSI).
+* Modify the AST to add additional where clauses for specific entities (example ACL, country-specific content...)
+* Modify the Output walker to pretty print the SQL for debugging purposes.
+
+In this cookbook-entry I will show examples on the first two points. There
+are probably much more use-cases.
+
+## Generic count query for pagination
+
+Say you have a blog and posts all with one category and one author. A query
+for the front-page or any archive page might look something like:
+
+ [sql]
+ SELECT p, c, a FROM BlogPost p JOIN p.category c JOIN p.author a WHERE ...
+
+Now in this query the blog post is the root entity, meaning its the one that
+is hydrated directly from the query and returned as an array of blog posts.
+In contrast the comment and author are loaded for deeper use in the object tree.
+
+A pagination for this query would want to approximate the number of posts that
+match the WHERE clause of this query to be able to predict the number of pages
+to show to the user. A draft of the DQL query for pagination would look like:
+
+ [sql]
+ SELECT count(DISTINCT p.id) FROM BlogPost p JOIN p.category c JOIN p.author a WHERE ...
+
+Now you could go and write each of these queries by hand, or you can use a tree
+walker to modify the AST for you. Lets see how the API would look for this use-case:
+
+ [php]
+ $pageNum = 1;
+ $query = $em->createQuery($dql);
+ $query->setFirstResult( ($pageNum-1) * 20)->setMaxResults(20);
+
+ $totalResults = Paginate::count($query);
+ $results = $query->getResult();
+
+The `Paginate::count(Query $query)` looks like:
+
+ [php]
+ class Paginate
+ {
+ static public function count(Query $query)
+ {
+ /* @var $countQuery Query */
+ $countQuery = clone $query;
+
+ $countQuery->setHint(Query::HINT_CUSTOM_TREE_WALKERS, array('DoctrineExtensions\Paginate\CountSqlWalker'));
+ $countQuery->setFirstResult(null)->setMaxResults(null);
+
+ return $countQuery->getSingleScalarResult();
+ }
+ }
+
+It clones the query, resets the limit clause first and max results and registers the `CountSqlWalker`
+customer tree walker which will modify the AST to execute a count query. The walkers
+implementation is:
+
+ [php]
+ class CountSqlWalker extends TreeWalkerAdapter
+ {
+ /**
+ * Walks down a SelectStatement AST node, thereby generating the appropriate SQL.
+ *
+ * @return string The SQL.
+ */
+ public function walkSelectStatement(SelectStatement $AST)
+ {
+ $parent = null;
+ $parentName = null;
+ foreach ($this->_getQueryComponents() AS $dqlAlias => $qComp) {
+ if ($qComp['parent'] === null && $qComp['nestingLevel'] == 0) {
+ $parent = $qComp;
+ $parentName = $dqlAlias;
+ break;
+ }
+ }
+
+ $pathExpression = new PathExpression(
+ PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $parentName, array(
+ $parent['metadata']->getSingleIdentifierFieldName())
+ );
+ $pathExpression->type = PathExpression::TYPE_STATE_FIELD;
+
+ $AST->selectClause->selectExpressions = array(
+ new SelectExpression(
+ new AggregateExpression('count', $pathExpression, true), null
+ )
+ );
+ }
+ }
+
+This will delete any given select expressions and replace them with a distinct count
+query for the root entities primary key. This will only work if your entity has
+only one identifier field (composite keys won't work).
+
+## Modify the Output Walker to generate Vendor specific SQL
+
+Most RMDBS have vendor-specific features for optimizing select query
+execution plans. You can write your own output walker to introduce certain
+keywords using the Query Hint API. A query hint can be set via `Query::setHint($name, $value)`
+as shown in the previous example with the `HINT_CUSTOM_TREE_WALKERS` query hint.
+
+We will implement a custom Output Walker that allows to specifiy the SQL_NO_CACHE
+query hint.
+
+ [php]
+ $dql = "SELECT p, c, a FROM BlogPost p JOIN p.category c JOIN p.author a WHERE ...";
+ $query = $m->createQuery($dql);
+ $query->setQueryHint(Query::HINT_CUSTOM_OUTPUT_WALKER, 'DoctrineExtensions\Query\MysqlWalker');
+ $query->setQueryHint("mysqlWalker.sqlNoCache", true);
+ $results = $query->getResult();
+
+Our `MysqlWalker` will extend the default `SqlWalker`. We will modify the generation
+of the SELECT clause, adding the SQL_NO_CACHE on those queries that need it:
+
+ [php]
+ class MysqlWalker extends SqlWalker
+ {
+ /**
+ * Walks down a SelectClause AST node, thereby generating the appropriate SQL.
+ *
+ * @param $selectClause
+ * @return string The SQL.
+ */
+ public function walkSelectClause($selectClause)
+ {
+ $sql = parent::walkSelectClause($selectClause);
+
+ if ($this->getQuery()->getHint('mysqlWalker.sqlNoCache') === true) {
+ if ($selectClause->isDistinct) {
+ $sql = str_replace('SELECT DISTINCT', 'SELECT DISTINCT SQL_NO_CACHE', $sql);
+ } else {
+ $sql = str_replace('SELECT', 'SELECT SQL_NO_CACHE', $sql);
+ }
+ }
+
+ return $sql;
+ }
+ }
+
+Writing extensions to the Output Walker requires a very deep understanding
+of the DQL Parser and Walkers, but may offer your huge benefits with using vendor specific
+features. This would still allow you write DQL queries instead of NativeQueries
+to make use of vendor specific features.
diff --git a/cookbook/en/dql-user-defined-functions.txt b/cookbook/en/dql-user-defined-functions.txt
new file mode 100644
index 000000000..d738617c4
--- /dev/null
+++ b/cookbook/en/dql-user-defined-functions.txt
@@ -0,0 +1,198 @@
+By default DQL supports a limited subset of all the vendor-specific SQL functions
+common between all the vendors. However in many cases once you have decided on a
+specific database vendor, you will never change it during the life of your project.
+This decision for a specific vendor potentially allows you to make use of powerful
+SQL features that are unique to the vendor.
+
+> **Note**
+>
+> It is worth to mention that Doctrine 2 also allows you to handwrite your SQL instead of extending
+> the DQL parser, which is sort of an advanced extension point. You can map arbitrary SQL to your
+> objects and gain access to vendor specific functionalities using the `EntityManager#createNativeQuery()` API.
+
+The DQL Parser has hooks to register functions that can then be used in your DQL queries and transformed into SQL,
+allowing to extend Doctrines Query capabilities to the vendors strength. This post explains the
+Used-Defined Functions API (UDF) of the Dql Parser and shows some examples to give you
+some hints how you would extend DQL.
+
+There are three types of functions in DQL, those that return a numerical value,
+those that return a string and those that return a Date. Your custom method
+has to be registered as either one of those. The return type information
+is used by the DQL parser to check possible syntax errors during the parsing
+process, for example using a string function return value in a math expression.
+
+## Registering your own DQL functions
+
+You can register your functions adding them to the ORM configuration:
+
+ [php]
+ $config = new \Doctrine\ORM\Configuration();
+ $config->addCustomStringFunction($name, $class);
+ $config->addCustomNumericFunction($name, $class);
+ $config->addCustomDatetimeFunction($name, $class);
+
+ $em = EntityManager::create($dbParams, $config);
+
+The `$name` is the name the function will be referred to in the DQL query. `$class` is a
+string of a class-name which has to extend `Doctrine\ORM\Query\Node\FunctionNode`.
+This is a class that offers all the necessary API and methods to implement
+a UDF.
+
+In this post we will implement some MySql specific Date calculation methods,
+which are quite handy in my opinion:
+
+## Date Diff
+
+[Mysql's DateDiff function](http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_datediff)
+takes two dates as argument and calculates the difference in days with `date1-date2`.
+
+The DQL parser is a top-down recursive descent parser to generate the
+Abstract-Syntax Tree (AST) and uses a TreeWalker approach to generate the appropriate
+SQL from the AST. This makes reading the Parser/TreeWalker code managable
+in a finite amount of time.
+
+The `FunctionNode` class I referred to earlier requires you to implement
+two methods, one for the parsing process (obviously) called `parse` and
+one for the TreeWalker process called `getSql()`. I show you the code for
+the DateDiff method and discuss it step by step:
+
+ [php]
+ /**
+ * DateDiffFunction ::= "DATEDIFF" "(" ArithmeticPrimary "," ArithmeticPrimary ")"
+ */
+ class DateDiff extends FunctionNode
+ {
+ // (1)
+ public $firstDateExpression = null;
+ public $secondDateExpression = null;
+
+ public function parse(\Doctrine\ORM\Query\Parser $parser)
+ {
+ $parser->match(Lexer::T_IDENTIFIER); // (2)
+ $parser->match(Lexer::T_OPEN_PARENTHESIS); // (3)
+ $this->firstDateExpression = $parser->ArithmeticPrimary(); // (4)
+ $parser->match(Lexer::T_COMMA); // (5)
+ $this->secondDateExpression = $parser->ArithmeticPrimary(); // (6)
+ $parser->match(Lexer::T_CLOSE_PARENTHESIS); // (3)
+ }
+
+ public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
+ {
+ return 'DATEDIFF(' .
+ $this->firstDateExpression->dispatch($sqlWalker) . ', ' .
+ $this->secondDateExpression->dispatch($sqlWalker) .
+ ')'; // (7)
+ }
+ }
+
+The Parsing process of the DATEDIFF function is going to find two expressions
+the date1 and the date2 values, whose AST Node representations will be saved
+in the variables of the DateDiff FunctionNode instance at (1).
+
+The parse() method has to cut the function call "DATEDIFF" and its argument
+into pieces. Since the parser detects the function using a lookahead the
+T_IDENTIFIER of the function name has to be taken from the stack (2), followed
+by a detection of the arguments in (4)-(6). The opening and closing parenthesis
+have to be detected also. This happens during the Parsing process and leads
+to the generation of a DateDiff FunctionNode somewhere in the AST of the
+dql statement.
+
+The `ArithmeticPrimary` method call is the most common denominator of valid
+EBNF tokens taken from the [DQL EBNF grammer](http://www.doctrine-project.org/documentation/manual/2_0/en/dql-doctrine-query-language#ebnf)
+that matches our requirements for valid input into the DateDiff Dql function.
+Picking the right tokens for your methods is a tricky business, but the EBNF
+grammer is pretty helpful finding it, as is looking at the Parser source code.
+
+Now in the TreeWalker process we have to pick up this node and generate SQL
+from it, which apprently is quite easy looking at the code in (7). Since
+we don't know which type of AST Node the first and second Date expression
+are we are just dispatching them back to the SQL Walker to generate SQL from
+and then wrap our DATEDIFF function call around this output.
+
+Now registering this DateDiff FunctionNode with the ORM using:
+
+ [php]
+ $config = new \Doctrine\ORM\Configuration();
+ $config->addCustomStringFunction('DATEDIFF', 'DoctrineExtensions\Query\MySql\DateDiff');
+
+We can do fancy stuff like:
+
+ [sql]
+ SELECT p FROM DoctrineExtensions\Query\BlogPost p WHERE DATEDIFF(CURRENT_TIME(), p.created) < 7
+
+## Date Add
+
+Often useful it the ability to do some simple date calculations in your DQL query
+using [MySql's DATE_ADD function](http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_date-add).
+
+I'll skip the bla and show the code for this function:
+
+ [php]
+ /**
+ * DateAddFunction ::=
+ * "DATE_ADD" "(" ArithmeticPrimary ", INTERVAL" ArithmeticPrimary Identifier ")"
+ */
+ class DateAdd extends FunctionNode
+ {
+ public $firstDateExpression = null;
+ public $intervalExpression = null;
+ public $unit = null;
+
+ public function parse(\Doctrine\ORM\Query\Parser $parser)
+ {
+ $parser->match(Lexer::T_IDENTIFIER);
+ $parser->match(Lexer::T_OPEN_PARENTHESIS);
+
+ $this->firstDateExpression = $parser->ArithmeticPrimary();
+
+ $parser->match(Lexer::T_COMMA);
+ $parser->match(Lexer::T_IDENTIFIER);
+
+ $this->intervalExpression = $parser->ArithmeticPrimary();
+
+ $parser->match(Lexer::T_IDENTIFIER);
+
+ /* @var $lexer Lexer */
+ $lexer = $parser->getLexer();
+ $this->unit = $lexer->token['value'];
+
+ $parser->match(Lexer::T_CLOSE_PARENTHESIS);
+ }
+
+ public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
+ {
+ return 'DATE_ADD(' .
+ $this->firstDateExpression->dispatch($sqlWalker) . ', INTERVAL ' .
+ $this->intervalExpression->dispatch($sqlWalker) . ' ' . $this->unit .
+ ')';
+ }
+ }
+
+The only difference compared to the DATEDIFF here is, we additionally need the `Lexer` to access
+the value of the `T_IDENTIFIER` token for the Date Interval unit, for example the MONTH in:
+
+ [sql]
+ SELECT p FROM DoctrineExtensions\Query\BlogPost p WHERE DATE_ADD(CURRENT_TIME(), INTERVAL 4 MONTH) > p.created
+
+The above method now only supports the specification using `INTERVAL`, to also
+allow a real date in DATE_ADD we need to add some decision logic to the parsing
+process (makes up for a nice excercise).
+
+Now as you see, the Parsing process doesn't catch all the possible SQL errors,
+here we don't match for all the valid inputs for the interval unit.
+However where necessary we rely on the database vendors SQL parser to show us further errors
+in the parsing process, for example if the Unit would not be one of the supported values
+by MySql.
+
+## Conclusion
+
+Now that you all know how you can implement vendor specific SQL functionalities in DQL,
+we would be excited to see user extensions that add vendor specific function packages,
+for example more math functions, XML + GIS Support, Hashing functions and so on.
+
+For 2.0 we will come with the current set of functions, however for a future
+version we will re-evaluate if we can abstract even more vendor sql functions
+and extend the DQL languages scope.
+
+Code for this Extension to DQL and other Doctrine Extensions can be found
+[in my Github DoctrineExtensions repository](http://github.com/beberlei/DoctrineExtensions).
\ No newline at end of file
diff --git a/cookbook/en/getting-started-xml-edition.txt b/cookbook/en/getting-started-xml-edition.txt
new file mode 100644
index 000000000..b9a9632d1
--- /dev/null
+++ b/cookbook/en/getting-started-xml-edition.txt
@@ -0,0 +1,704 @@
+Doctrine 2 is a project that aims to handle the persistence of the domain model in a non-interfering way.
+The Data Mapper pattern is at the heart of this project, aiming for a complete separation of the domain/business logic
+from the persistence in a relational database management system. The benefit of Doctrine for the programmer is the
+possibility can focus soley on the business and worry about persistence only as a secondary task. This doesn't mean
+persistence is not important to Doctrine 2, however it is our believe that there are considerable benefits for object-oriented
+programming, if persistence and entities are kept perfectly seperated.
+
+## What are Entities?
+
+Entities are leightweight PHP Objects that don't need to extend any abstract base class or interface.
+An entity class must not be final or contain final methods. Additionally it must not implement __clone
+nor __wakeup or [do so safely](http://www.doctrine-project.org/documentation/cookbook/2_0/en/implementing-wakeup-or-clone).
+
+An entity contains persistable properties. A persistable property is an instance variable of the entity
+that contains the data which is persisted and retrieved by Doctrine's data mapping capabilities.
+
+## An Example Model: Bug Tracker
+
+For this Getting Started Guide for Doctrine we will implement the Bug Tracker domain model from the [Zend_Db_Table](http://framework.zend.com/manual/en/zend.db.table.html)
+documentation. Reading that documentat we can extract the requirements to be:
+
+* A Bugs has a description, creation date, status, reporter and engineer
+* A bug can occour on different products (platforms)
+* Products have a name.
+* Bug Reporter and Engineers are both Users of the System.
+* A user can create new bugs.
+* The assigned engineer can close a bug.
+* A user can see all his reported or assigned bugs.
+* Bugs can be paginated through a list-view.
+
+> **WARNING**
+>
+> This tutorial is incrementally building up your Doctrine 2 knowledge and even lets you make some mistakes, to
+> show some common pitfalls in mapping Entities to a database. Don't blindly copy-paste the examples here, it
+> is not production ready without the additional comments and knowledge this tutorial teaches.
+
+## A first prototype
+
+A first simplified design for this domain model might look like the following set of classes:
+
+ [php]
+ class Bug
+ {
+ public $id;
+ public $description;
+ public $created;
+ public $status;
+ public $products = array();
+ public $reporter;
+ public $engineer;
+ }
+ class Product
+ {
+ public $id;
+ public $name;
+ }
+ class User
+ {
+ public $id;
+ public $name;
+ public $reportedBugs = array();
+ public $assignedBugs = array();
+ }
+
+> **WARNING**
+>
+> This is only a prototype, please don't use public properties with Doctrine 2 at all,
+> the "Queries for Application Use-Cases" section shows you why. In combination with proxies
+> public properties can make up for pretty nasty bugs.
+
+Because we will focus on the mapping aspect, no effort is being made to encapsulate the business logic in this example.
+All peristable properties are public in visibility. We will soon see that this is not the best solution in combination
+with Doctrine 2, one restriction that actually forces you to encapsulate your properties. For persistence Doctrine 2
+actually uses Reflection to access the values in all your entities properties.
+
+Many of the fields are single scalar values, for example the 3 ID fields of the entities, their names, description,
+status and change dates. Doctrine 2 can easily handle these single values as can any other ORM. From a point of our
+domain model they are ready to be used right now and we will see at a later stage how they are mapped to the database.
+
+There are also several references between objects in this domain model, whose semantics are discussed case by case at this point
+to explain how Doctrine handles them. In general each OneToOne or ManyToOne Relation in the Database is replaced by an
+instance of the related object in the domain model. Each OneToMany or ManyToMany Relation is replaced by a collection
+of instances in the domain model.
+
+If you think this through carefully you realize Doctrine 2 will load up the complete database in memory if you access
+one object. However by default Doctrine generates Lazy Load proxies of entities or collections of all the relations
+that haven't been explicitly retrieved from the database yet.
+
+To be able to use lazyload with collections, simple PHP arrays have to be replaced by a generic collection
+interface Doctrine\Common\Collections\Collection which tries to act as array as much as possible using ArrayAccess,
+IteratorAggregate and Countable interfaces. The class \Doctrine\Common\Collections\ArrayCollection is the most simple
+implementation of this interface.
+
+Now that we know this, we have to clear up our domain model to cope with the assumptions about related collections:
+
+ [php]
+ use Doctrine\Common\Collections\ArrayCollection;
+
+ class Bug
+ {
+ public $products = null;
+
+ public function __construct()
+ {
+ $this->products = new ArrayCollection();
+ }
+ }
+
+ class User
+ {
+ public $reportedBugs = null;
+ public $assignedBugs = null;
+
+ public function __construct()
+ {
+ $this->reportedBugs = new ArrayCollection();
+ $this->assignedBugs = new ArrayCollection();
+ }
+ }
+
+Whenever an entity is recreated from the database, an Collection implementation of the type
+Doctrine\ORM\PersistantCollection is injected into your entity instead of an array. Compared
+to the ArrayCollection this implementation helps the Doctrine ORM understand the changes that
+have happend to the collection which are noteworthy for persistence.
+
+> **Warning**
+> Lazy load proxies always contain an instance of Doctrine's EntityManager and all its dependencies. Therefore a var_dump()
+> will possibly dump a very large recursive structure which is impossible to render and read. You have to use
+> `Doctrine\Common\Util\Debug::dump()` to restrict the dumping to a human readable level. Additionally you should be aware
+> that dumping the EntityManager to a Browser may take several minutes, and the Debug::dump() method just ignores any
+> occurences of it in Proxy instances.
+
+Because we only work with collections for the references we must be careful to implement a bidirectional reference in
+the domain model. The concept of owning or inverse side of a relation is central to this notion and should always
+be kept in mind. The following assumptions are made about relations and have to be followed to be able to work with Doctrine 2.
+These assumptions are not unique to Doctrine 2 but are best practices in handling database relations and Object-Relational Mapping.
+
+* Changes to Collections are saved or updated, when the entity on the *ownin*g side of the collection is saved or updated.
+* Saving an Entity at the inverse side of a relation never triggers a persist operation to changes to the collection.
+* In a one-to-one relation the entity holding the foreign key of the related entity on its own database table is *always* the owning side of the relation.
+* In a many-to-many relation, both sides can be the owning side of the relation. However in a bi-directional many-tomany relation only one is allowed to be.
+* In a many-to-one relation the Many-side is the owning side by default, because it holds the foreign key.
+* The OneToMany side of a relation is inverse by default, since the foreign key is saved on the Many side. A OneToMany relation can only be the owning side, if its implemented using a ManyToMany relation with join table and restricting the one side to allow only UNIQUE values per database constraint.
+
+> **Important**
+>
+> Consistency of bi-directional references on the inverse side of a relation have to be managed in userland application code.
+> Doctrine cannot magically update your collections to be consistent.
+
+In the case of Users and Bugs we have references back and forth to the assigned and reported bugs from a user,
+making this relation bi-directional. We have to change the code to ensure consistency of the bi-directional reference:
+
+ [php]
+ class Bug
+ {
+ protected $engineer;
+ protected $reporter;
+
+ public function setEngineer($engineer)
+ {
+ $engineer->assignedToBug($this);
+ $this->engineer = $engineer;
+ }
+
+ public function setReporter($reporter)
+ {
+ $reporter->addReportedBug($this);
+ $this->reporter = $reporter;
+ }
+
+ public function getEngineer()
+ {
+ return $this->engineer;
+ }
+
+ public function getReporter()
+ {
+ return $this->reporter;
+ }
+ }
+ class User
+ {
+ public function addReportedBug($bug)
+ {
+ $this->reportedBugs[] = $bug;
+ }
+
+ public function assignedToBug($bug)
+ {
+ $this->assignedBugs[] = $bug;
+ }
+ }
+
+I chose to name the inverse methods in past-tense, which should indicate that the actual assigning has already taken
+place and the methods are only used for ensuring consistency of the references. You can see from `User::addReportedBug()`
+and `User::assignedToBug()` that using this method in userland alone would not add the Bug to the collection of the owning
+side in Bug::$reporter or Bug::$engineer. Using these methods and calling Doctrine for persistence would not update
+the collections representation in the database.
+
+Only using `Bug::setEngineer()` or `Bug::setReporter()` correctly saves the relation information. We also set both collection
+instance variables to protected, however with PHP 5.3's new features Doctrine is still able to use Reflection to set and get values
+from protected and private properties.
+
+The `Bug::$reporter` and `Bug::$engineer` properties are Many-To-One relations, which point to a User. In a normalized
+relational model the foreign key is saved on the Bug's table, hence in our object-relation model the Bug is at the owning
+side of the relation. You should always make sure that the use-cases of your domain model should drive which side
+is an inverse or owning one in your Doctrine mapping. In our example, whenever a new bug is saved or an engineer is assigned
+to the bug, we don't want to update the User to persist the reference, but the Bug.
+This is the case with the Bug being at the owning side of the relation.
+
+Bugs reference Products by a uni-directional ManyToMany relation in the database that points from from Bugs to Products.
+
+ [php]
+ class Bug
+ {
+ protected $products = null; // Set protected for encapsulation
+
+ public function assignToProduct($product)
+ {
+ $this->products[] = $product;
+ }
+
+ public function getProducts()
+ {
+ return $this->products;
+ }
+ }
+
+We are now finished with the domain model given the requirements. From the simple model with public properties only
+we had to do quite some work to get to a model where we encapsulated the references between the objects to make sure
+we don't break its consistent state when using Doctrine.
+
+However up to now the assumptions Doctrine imposed on our business objects have not restricting us much in our domain
+modelling capabilities. Actually we would have encapsulated access to all the properties anyways by using
+object-oriented best-practices.
+
+## Metadata Mappings for our Entities
+
+Up to now we have only implemented our Entites as Data-Structures without actually telling Doctrine how to persist
+them in the database. If perfect in-memory databases would exist, we could now finish the application using these entities
+by implementing code to fullfil all the requirements. However the world isn't perfect and we have to persist our
+entities in some storage to make sure we don't loose their state. Doctrine currently serves Relational Database Management Systems.
+In the future we are thinking to support NoSQL vendors like CouchDb or MongoDb, however this is still far in the future.
+
+The next step for persistance with Doctrine is to describe the structure of our domain model entities to Doctrine
+using a metadata language. The metadata language describes how entities, their properties and references should be
+persisted and what constraints should be applied to them.
+
+Metadata for entities are loaded using a `Doctrine\ORM\Mapping\Driver\Driver` implementation and Doctrine 2 already comes
+with XML, YAML and Annotations Drivers. In this Getting Started Guide I will use the XML Mapping Driver. I think XML
+beats YAML because of schema validation, and my favorite IDE netbeans offers me auto-completion for the XML mapping files
+which is awesome to work with and you don't have to look up all the different metadata mapping commands all the time.
+
+Since we haven't namespaced our three entities, we have to implement three mapping files called Bug.dcm.xml,
+Product.dcm.xml and User.dcm.xml and put them into a distinct folder for mapping configurations.
+
+The first discussed definition will be for the Product, since it is the most simple one:
+
+ [xml]
+
+
+
+
+
+
+
+
+
+
+
+
+The toplevel `entity` definition tag specifies information about the class and table-name. The
+primitive type `Product::$name` is defined as `field` attributes. The Id property is defined with the `id` tag.
+The id has a `generator` tag nested inside which defines that the primary key generation mechanism
+automatically uses the database platforms native id generation strategy, for example AUTO INCREMENT
+in the case of MySql or Sequences in the case of PostgreSql and Oracle.
+
+We then go on specifying the definition of a Bug:
+
+ [xml]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Here again we have the entity, id and primitive type definitions.
+The column names are used from the Zend_Db_Table examples and have different names than the properties
+on the Bug class. Additionally for the "created" field it is specified that it is of the Type "DATETIME",
+which translates the YYYY-mm-dd HH:mm:ss Database format into a PHP DateTime instance and back.
+
+After the field definitions the two qualified references to the user entity are defined. They are created by
+the `many-to-one` tag. The class name of the related entity has to be specified with the `target-entity`
+attribute, which is enough information for the database mapper to access the foreign-table. The
+`join-column` tags are used to specifiy how the foreign and referend columns are named, an information
+Doctrine needs to construct joins between those two entities correctly.
+
+The last missing property is the `Bug::$products` collection. It holds all products where the specific
+bug is occouring in. Again you have to define the `target-entity` and `field` attributes on the `many-to-many`
+tag. Furthermore you have to specifiy the details of the many-to-many join-table and its foreign key columns.
+The definition is rather complex, however relying on the XML auto-completion I got it working easily, although
+I forget the schema details all the time.
+
+The last missing definition is that of the User entity:
+
+ [xml]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Here are some new things to mention about the `one-to-many` tags. Remember that we discussed about
+the inverse and owning side. Now both reportedBugs and assignedBugs are inverse relations,
+which means the join details have already been defined on the owning side. Therefore we only
+have to specify the property on the Bug class that holds the owning sides.
+
+This example has a fair overview of the most basic features of the metadata definition language.
+
+## Obtaining the EntityManager
+
+Doctrine's public interface is the EntityManager, it provides the access point to the complete
+lifecycle management of your entities and transforms entities from and back to persistence. You
+have to configure and create it to use your entities with Doctrine 2. I will show the configuration
+steps and then discuss them step by step:
+
+ [php]
+ // Setup Autoloader (1)
+ require '/path/to/lib/Doctrine/Common/ClassLoader.php';
+ $loader = new Doctrine\Common\ClassLoader("Doctrine", '/path/to/Doctrine/trunk/lib/');
+ $loader->register();
+
+ $config = new Doctrine\ORM\Configuration(); // (2)
+
+ // Proxy Configuration (3)
+ $config->setProxyDir(__DIR__.'/lib/MyProject/Proxies');
+ $config->setProxyNamespace('MyProject\Proxies');
+ $config->setAutoGenerateProxyClasses((APPLICATION_ENV == "development"));
+
+ // Mapping Configuration (4)
+ $driverImpl = new Doctrine\ORM\Mapping\Driver\XmlDriver(__DIR__."/config/mappings");
+ $config->setMetadataDriverImpl($driverImpl);
+
+ // Caching Configuration (5)
+ if (APPLICATION_ENV == "develoment") {
+ $cache = new \Doctrine\Common\Cache\ArayCache();
+ } else {
+ $cache = new \Doctrine\Common\Cache\ApcCache();
+ }
+ $config->setMetadataCacheImpl($cache);
+ $config->setQueryCacheImpl($cache);
+
+ // database configuration parameters (6)
+ $conn = array(
+ 'driver' => 'pdo_sqlite',
+ 'path' => __DIR__ . '/db.sqlite',
+ );
+
+ // obtaining the entity manager (7)
+ $evm = new Doctrine\Common\EventManager()
+ $entityManager = \Doctrine\ORM\EntityManager::create($conn, $config, $evm);
+
+The first block sets up the autoloading capabilities of Doctrine. I am registering the Doctrine
+namespace to the given path. To add your own namespace you can instantiate another `CloassLoader`
+with different namespace and path arguments. There is no requirement to use the Doctrine `ClassLoader`
+for your autoloading needs, you can use whatever suits you best.
+
+The second block contains of the instantiation of the ORM Configuration object. Besides the
+configuration shown in the next blocks there are several others with are all explained
+in the [Configuration section of the manual](http://www.doctrine-project.org/documentation/manual/2_0/en/configuration#configuration-options).
+
+The Proxy Configuration is a required block for your application, you have to specifiy where
+Doctrine writes the PHP code for Proxy Generation. Proxies are children of your entities generated
+by Doctrine to allow for type-safe lazy loading. We will see in a later chapter how exactly this works.
+Besides the path to the proxies we also specifiy which namespace they will reside under aswell as
+a flag `autoGenerateProxyClasses` indicating that proxies should be re-generated on each request,
+which is recommended for development. In production this should be prevented at all costs,
+the proxy class generation can be quite costly.
+
+The fourth block contains the mapping driver details. We will use XML Mapping in this example, so
+we configure the `XmlDriver` instance with a path to mappings configuration folder where we put
+the Bug.dcm.xml, Product.dcm.xml and User.dcm.xml.
+
+In the 5th block the caching configuration is set. In production we use caching only on a per request-basis
+using the ArrayCache. In production it is literally required to use Apc, Memcache or XCache to get the full
+speed out of Doctrine. Internally Doctrine uses caching heavily for the Metadata and DQL Query Language
+so make sure you use a caching mechanism.
+
+The 6th block shows the configuration options required to connect to a database, in my case a file-based
+sqlite database. All the configuration options for all the shipped drivers are given in the [DBAL Configuration
+section of the manual](http://www.doctrine-project.org/documentation/manual/2_0/en/dbal).
+
+The last block shows how the `EntityManager` is obtained from a factory method, Here we also pass
+in an `EventManager` instance which is optional. However using the EventManager you can hook in to the lifecycle
+of entities, which is a common use-case, so you know how to configure it already.
+
+## Generating the Database Schema
+
+Now that we have defined the Metadata Mappings and bootstrapped the EntityManager
+we want to generate the relational database schema from it.
+Doctrine has a Command-Line-Interface that allows you to access the SchemaTool, a component that generates
+the required tables to work with the metadata.
+
+For the commandline tool to work a cli-config.php file has to be present in the project root directry,
+where you will execute the doctrine command. Its a fairly simple file:
+
+ [php]
+ $cliConfig = new Doctrine\Common\Cli\Configuration();
+ $cliConfig->setAttribute('em', $entityManager);
+
+You can then use your favorite console tool to call:
+
+ [console]
+ doctrine@my-desktop> cd myproject/
+ doctrine@my-desktop> doctrine orm:schema-tool --create
+
+During the development you probably need to re-create the database several times when changing the Entity
+metadata. You can then either re-create the database, or use the update functionality:
+
+ [console]
+ doctrine@my-desktop> doctrine orm:schema-tool --re-create
+ doctrine@my-desktop> doctrine orm:schema-tool --update
+
+The updating of databases uses a Diff Algorithm for a given Database Schema, a cornerstone of the `Doctrine\DBAL`
+package, which can even be used without the Doctrine ORM package. However its not available in SQLite since
+it does not support ALTER TABLE.
+
+## Writing Entities into the Database
+
+Having created the schema we can now start and save entities in the database. For starters we need a create user use-case:
+
+ [php]
+ $newUsername = "beberlei";
+
+ $user = new User();
+ $user->name = $newUsername;
+
+ $entityManager->persist($user);
+ $entityManager->flush();
+
+Having a user, he can create products:
+
+ [php]
+ $newProductName = "My Product";
+
+ $product = new Product();
+ $product->name = $newProductName;
+
+ $entityManager->persist($product);
+ $entityManager->flush();
+
+So what is happening in those two snippets? In both examples the class creation is pretty standard, the interesting
+bits are the communication with the `EntityManager`. To notify the EntityManager that a new entity should be inserted
+into the database you have to call `persist()`. However the EntityManager does not act on this, its merely notified.
+You have to explicitly call `flush()` to have the EntityManager write those two entities to the database.
+
+You might wonder why does this distinction between persist notification and flush exist? Doctrine 2 uses the
+UnitOfWork pattern to aggregate all writes (INSERT, UDPATE, DELETE) into one single fast transaction, which
+is executed when flushing. This way the write-performance is unbelievable fast. Also in more complex scenarios
+than those two before you can request updates on many different entities and all flush them at once.
+
+Doctrine's UnitOfWork even detects entities that have been retrieved from the database and changed when calling
+flush, so that you only have to keep track of those entities that are new or to be removed and pass them to
+`EntityManager#persist()` and `EntityManager#remove()` respectively.
+
+We are now getting to the "Create a New Bug" requirement and the code for this scenario may look like this:
+
+ [php]
+ $reporter = $entityManager->find("User", $theReporterId);
+ $engineer = $entityManager->find("User", $theDefaultEngineerId);
+
+ $bug = new Bug();
+ $bug->description = "Something does not work!";
+ $bug->created = new DateTime("now");
+ $bug->status = "NEW";
+
+ foreach ($productIds AS $productId) {
+ $product = $entityManager->find("Product", $productId);
+ $bug->assignToProduct($product);
+ }
+
+ $bug->setReporter($reporter);
+ $bug->setEngineer($engineer);
+
+ $entityManager->persist($bug);
+ $entityManager->flush();
+
+ echo "Your new Bug Id: ".$bug->id."\n";
+
+This is the first contact with the read API of the EntityManager, showing that a call to
+`EntityManager#find($name, $id)` returns a single instance of an entity queried by primary key.
+Besides this we see the persist + flush pattern again to save the Bug into the database.
+
+See how simple relating Bug, Reporter, Engineer and Products is done by using the discussed methods
+in the "A first prototype" section. The UnitOfWork will detect this relations when flush
+is called and relate them in the database appropriately.
+
+## Queries for Application Use-Cases
+
+Using the previous examples we can fill up the database quite a bit, however we now need to discuss how to query the underlying
+mapper for the required view representations. When opening the application, bugs can be paginated through a list-view, which is the first
+read-only use-case:
+
+ [php]
+ $dql = "SELECT b, e, r FROM Bug b JOIN b.engineer e JOIN b.reporter r ORDER BY b.created DESC";
+
+ $query = $entityManager->createQuery($dql);
+ $query->setMaxResults(30);
+ $bugs = $query->getResult();
+
+ foreach($bugs AS $bug) {
+ echo $bug->description." - ".$bug->created->format('d.m.Y')."\n";
+ echo " Reported by: ".$bug->getReporter()->name."\n";
+ echo " Assigned to: ".$bug->getEngineer()->name."\n";
+ foreach($bug->getProducts() AS $product) {
+ echo " Platform: ".$product->name."\n";
+ }
+ echo "\n";
+ }
+
+The DQL Query in this example fetches the 30 most recent bugs with their respective engineer and reporter
+in one single SQL statement. The console output of this script is then:
+
+ Something does not work! - 02.04.2010
+ Reported by: beberlei
+ Assigned to: beberlei
+ Platform: My Product
+
+> **NOTE**
+>
+> **Dql is not Sql**
+>
+> You may wonder why we start writing SQL at the beginning of this use-case. Don't we use an ORM to get rid
+> of all the endless hand-writing of SQL? Doctrine introduces DQL which is best described
+> as **object-query-language** and is a dialect of [OQL](http://en.wikipedia.org/wiki/Object_Query_Language) and
+> similar to [HQL](http://www.hibernate.org) or [JPQL](http://en.wikipedia.org/wiki/Java_Persistence_Query_Language).
+> It does not know the concept of columns and tables, but only those
+> of Entity-Class and property. Using the Metadata we defined before it allows for very short distinctive
+> and powerful queries.
+>
+> An important reason why DQL is favourable to the Query API of most ORMs is its similarity to SQL. The DQL language
+> allows query constructs that most ORMs don't, GROUP BY even with HAVING, Subselects, Fetch-Joins of nested
+> classes, mixed results with entities and scalar data such as COUNT() results and much more. Using
+> DQL you should seldom come to the point where you want to throw your ORM into the dumpster, because it
+> doesn't support some the more powerful SQL concepts.
+>
+> Besides handwriting DQL you can however also use the `QueryBuilder` retrieved by calling `$entityManager->createQueryBuilder()`
+> which is a Query Object around the DQL language.
+>
+> As a last resort you can however also use Native SQL and a description of the result set to retrieve
+> entities from the database. DQL boils down to a Native SQL statement and a `ResultSetMapping` instance itself.
+> Using Native SQL you could even use stored procedures for data retrieval, or make use of advanced non-portable
+> database queries like PostgreSql's recursive queries.
+
+The next Use-Case is displaying a Bug by primary key. This could be done using DQL as in the previous example with a where clause,
+however there is a convenience method on the Entity Manager that handles loading by primary key, which we have already
+seen in the write scenarios:
+
+ [php]
+ $bug = $entityManager->find("Bug", (int)$theBugId);
+
+However we will soon see another problem with our entities using this approach. Try displaying the engineer's name:
+
+ [php]
+ echo "Bug: ".$bug->description."\n";
+ echo "Engineer: ".$bug->getEngineer()->name."\n";
+
+It will be null! What is happening? It worked in the previous example, so it can't be a problem with the persistance
+code of Doctrine. You walked in the public property trap. Since we only retrieved the bug by primary key both the
+engineer and reporter are not immediately loaded from the database but are replaced by LazyLoading proxies. Sample
+code of this proxy generated code can be found in the specified Proxy Directory, it looks like:
+
+ [php]
+ namespace MyProject\Proxies;
+
+ /**
+ * THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
+ */
+ class UserProxy extends \User implements \Doctrine\ORM\Proxy\Proxy
+ {
+ // .. lazy load code here
+
+ public function addReportedBug($bug)
+ {
+ $this->_load();
+ return parent::addReportedBug($bug);
+ }
+
+ public function assignedToBug($bug)
+ {
+ $this->_load();
+ return parent::assignedToBug($bug);
+ }
+ }
+
+See how upon each method call the proxy is lazily loaded from the database? Using public properties however
+we never call a method and Doctrine has no way to hook into the PHP Engine to detect this access and trigger
+the lazy load. We need to revise our entities, make all the properties private or protected and add getters
+and setters to get a working example:
+
+ [php]
+ echo "Bug: ".$bug->getDescription()."\n";
+ echo "Engineer: ".$bug->getEngineer()->getName()."\n";
+
+ /**
+ Bug: Something does not work!
+ Engineer: beberlei
+ */
+
+For the next use-case we want to retrieve the dashboard view, a list of all open bugs the user reported or
+was assigned to. This will be achieved using DQL again, this time with some WHERE clauses and usage of bound parameters:
+
+ [php]
+ $dql = "SELECT b, e, r FROM Bug b JOIN b.engineer e JOIN b.reporter r ".
+ "WHERE b.status = 'OPEN' AND e.id = ?1 OR r.id = ?1 ORDER BY b.created DESC";
+
+ $myBugs = $entityManager->createQuery($dql)
+ ->setParameter(1, $theUserId)
+ ->setMaxResults(15)
+ ->getResult();
+
+ foreach ($myBugs AS $bug) {
+ echo $bug->getDescription()."\n";
+ }
+
+That is it for the read-scenarios of this example, we will continue with the last missing bit, engineers
+being able to close a bug.
+
+## Updating Entities
+
+There is a single use-case missing from the requirements, Engineers should be able to close a bug. This looks like:
+
+ [php]
+ $bug = $entityManager->find("Bug", (int)$theBugId);
+ $bug->close();
+
+ $entityManager->flush();
+
+When retrieving the Bug from the database it is inserted into the IdentityMap inside the UnitOfWork of Doctrine.
+This means your Bug with exactly this id can only exist once during the whole request no matter how often you
+call `EntityManager#find()`. It even detects entities that are hydrated using DQL and are already present in
+the Identity Map.
+
+When flush is called the EntityManager loops over all the entities in the identity map and performs a comparison
+between the values originally retrieved from the database and those values the entity currently has. If at
+least one of these properties is different the entity is scheduled for an UPDATE against the database.
+Only the changed columns are updated, which offers a pretty good performance improvement compared to updating
+all the properties.
+
+This tutorial is over here, I hope you had fun. Additional content will be added to this tutorial
+incrementally, topics will include:
+
+ * Entity Repositories
+ * More on Association Mappings
+ * Lifecycle Events triggered in the UnitOfWork
+ * Ordering of Collections
+
+Additional details on all the topics discussed here can be found in the respective manual chapters.
diff --git a/cookbook/en/implementing-arrayaccess-for-domain-objects.txt b/cookbook/en/implementing-arrayaccess-for-domain-objects.txt
new file mode 100644
index 000000000..4f295420d
--- /dev/null
+++ b/cookbook/en/implementing-arrayaccess-for-domain-objects.txt
@@ -0,0 +1,89 @@
+
+This recipe will show you how to implement ArrayAccess for your domain objects in order to allow more uniform access, for example in templates. In these examples we will implement ArrayAccess on a [Layer Supertype](http://martinfowler.com/eaaCatalog/layerSupertype.html) for all our domain objects.
+
+++ Option 1
+
+In this implementation we will make use of PHPs highly dynamic nature to dynamically access properties of a subtype in a supertype at runtime. Note that this implementation has 2 main caveats:
+
+* It will not work with private fields
+* It will not go through any getters/setters
+
+-
+
+ [php]
+ abstract class DomainObject implements ArrayAccess
+ {
+ public function offsetExists($offset) {
+ return isset($this->$offset);
+ }
+
+ public function offsetSet($offset, $value) {
+ $this->$offset = $value;
+ }
+
+ public function offsetGet($offset) {
+ return $this->$offset;
+ }
+
+ public function offsetUnset($offset) {
+ $this->$offset = null;
+ }
+ }
+
+
+++ Option 2
+
+In this implementation we will dynamically invoke getters/setters. Again we use PHPs dynamic nature to invoke methods on a subtype from a supertype at runtime. This implementation has the following caveats:
+
+* It relies on a naming convention
+* The semantics of offsetExists can differ
+* offsetUnset will not work with typehinted setters
+
+-
+
+ [php]
+ abstract class DomainObject implements ArrayAccess
+ {
+ public function offsetExists($offset) {
+ // In this example we say that exists means it is not null
+ $value = $this->{"get$offset"}();
+ return $value !== null;
+ }
+
+ public function offsetSet($offset, $value) {
+ $this->{"set$offset"}($value);
+ }
+
+ public function offsetGet($offset) {
+ return $this->{"get$offset"}();
+ }
+
+ public function offsetUnset($offset) {
+ $this->{"set$offset"}(null);
+ }
+ }
+
+++ Read-only
+
+You can slightly tweak option 1 or option 2 in order to make array access read-only. This will also circumvent some of the caveats of each option. Simply make offsetSet and offsetUnset throw an exception (i.e. BadMethodCallException).
+
+ [php]
+ abstract class DomainObject implements ArrayAccess
+ {
+ public function offsetExists($offset) {
+ // option 1 or option 2
+ }
+
+ public function offsetSet($offset, $value) {
+ throw new BadMethodCallException("Array access of class " . get_class($this) . " is read-only!");
+ }
+
+ public function offsetGet($offset) {
+ // option 1 or option 2
+ }
+
+ public function offsetUnset($offset) {
+ throw new BadMethodCallException("Array access of class " . get_class($this) . " is read-only!");
+ }
+ }
+
diff --git a/cookbook/en/implementing-the-notify-changetracking-policy.txt b/cookbook/en/implementing-the-notify-changetracking-policy.txt
new file mode 100644
index 000000000..025375487
--- /dev/null
+++ b/cookbook/en/implementing-the-notify-changetracking-policy.txt
@@ -0,0 +1,48 @@
+
+The NOTIFY changetracking policy is the most effective changetracking policy provided by Doctrine but it requires some boilerplate code. This recipe will show you how this boilerplate code should look like. We will implement it on a [Layer Supertype](http://martinfowler.com/eaaCatalog/layerSupertype.html) for all our domain objects.
+
+++ Implementing NotifyPropertyChanged
+
+The NOTIFY policy is based on the assumption that the entities notify interested listeners of changes to their properties. For that purpose, a class that wants to use this policy needs to implement the `NotifyPropertyChanged` interface from the `Doctrine\Common` namespace.
+
+ [php]
+ use Doctrine\Common\NotifyPropertyChanged,
+ Doctrine\Common\PropertyChangedListener;
+
+ abstract class DomainObject implements NotifyPropertyChanged
+ {
+ private $_listeners = array();
+
+ public function addPropertyChangedListener(PropertyChangedListener $listener) {
+ $this->_listeners[] = $listener;
+ }
+
+ /** Notifies listeners of a change. */
+ protected function _onPropertyChanged($propName, $oldValue, $newValue) {
+ if ($this->_listeners) {
+ foreach ($this->_listeners as $listener) {
+ $listener->propertyChanged($this, $propName, $oldValue, $newValue);
+ }
+ }
+ }
+ }
+
+Then, in each property setter of concrete, derived domain classes, you need to invoke _onPropertyChanged as follows to notify listeners:
+
+ [php]
+ // Mapping not shown, either in annotations, xml or yaml as usual
+ class MyEntity extends DomainObject
+ {
+ private $data;
+ // ... other fields as usual
+
+ public function setData($data) {
+ if ($data != $this->data) { // check: is it actually modified?
+ $this->_onPropertyChanged('data', $this->data, $data);
+ $this->data = $data;
+ }
+ }
+ }
+
+The check whether the new value is different from the old one is not mandatory but recommended. That way you can avoid unnecessary updates and also have full control over when you consider a property changed.
+
diff --git a/cookbook/en/implementing-wakeup-or-clone.txt b/cookbook/en/implementing-wakeup-or-clone.txt
new file mode 100644
index 000000000..efdefa7c3
--- /dev/null
+++ b/cookbook/en/implementing-wakeup-or-clone.txt
@@ -0,0 +1,63 @@
+
+As explained in the [restrictions for entity classes in the manual](http://www.doctrine-project.org/documentation/manual/2_0/en/architecture#entities),
+it is usually not allowed for an entity to implement `__wakeup` or `__clone`, because Doctrine
+makes special use of them. However, it is quite easy to make use of these methods in a safe way
+by guarding the custom wakeup or clone code with an entity identity check, as demonstrated in the following sections.
+
+++ Safely implementing __wakeup
+
+To safely implement `__wakeup`, simply enclose your implementation code in an identity check
+as follows:
+
+ [php]
+ class MyEntity
+ {
+ private $id; // This is the identifier of the entity.
+ //...
+
+ public function __wakeup()
+ {
+ // If the entity has an identity, proceed as normal.
+ if ($this->id) {
+ // ... Your code here as normal ...
+ }
+ // otherwise do nothing, do NOT throw an exception!
+ }
+
+ //...
+ }
+
+++ Safely implementing __clone
+
+Safely implementing `__clone` is pretty much the same:
+
+ [php]
+ class MyEntity
+ {
+ private $id; // This is the identifier of the entity.
+ //...
+
+ public function __clone()
+ {
+ // If the entity has an identity, proceed as normal.
+ if ($this->id) {
+ // ... Your code here as normal ...
+ }
+ // otherwise do nothing, do NOT throw an exception!
+ }
+
+ //...
+ }
+
+++ Summary
+
+As you have seen, it is quite easy to safely make use of `__wakeup` and `__clone` in your entities
+without adding any really Doctrine-specific or Doctrine-dependant code.
+
+These implementations are possible and safe because when Doctrine invokes these methods,
+the entities never have an identity (yet). Furthermore, it is possibly a good idea to check
+for the identity in your code anyway, since it's rarely the case that you want to unserialize
+or clone an entity with no identity.
+
+
+
diff --git a/cookbook/en/integrating-with-codeigniter.txt b/cookbook/en/integrating-with-codeigniter.txt
new file mode 100644
index 000000000..23165176a
--- /dev/null
+++ b/cookbook/en/integrating-with-codeigniter.txt
@@ -0,0 +1,104 @@
+This is recipe for using Doctrine 2 in your [CodeIgniter](http://www.codeigniter.com) framework.
+
+Here is how to set it up:
+
+Make a CodeIgniter library that is both a wrapper and a bootstrap for Doctrine 2.
+
+++ Setting up the file structure
+
+Here are the steps:
+
+* Add a php file to your system/application/libraries folder called Doctrine.php. This is going to be your wrapper/bootstrap for the D2 entity manager.
+* Put the Doctrine folder (the one that contains Common, DBAL, and ORM) inside that same libraries folder.
+* Your system/application/libraries folder now looks like this:
+
+ system/applications/libraries
+ -Doctrine
+ -Doctrine.php
+ -index.html
+
+* If you want, open your config/autoload.php file and autoload your Doctrine library.
+
+ [php]
+ $autoload['libraries'] = array('doctrine');
+
+++ Creating your Doctrine CodeIgniter library
+
+Now, here is what your Doctrine.php file should look like. Customize it to your needs.
+
+ [php]
+ use Doctrine\Common\ClassLoader,
+ Doctrine\ORM\Configuration,
+ Doctrine\ORM\EntityManager,
+ Doctrine\Common\Cache\ArrayCache,
+ Doctrine\DBAL\Logging\EchoSqlLogger;
+
+ class Doctrine {
+
+ public $em = null;
+
+ public function __construct()
+ {
+ // load database configuration from CodeIgniter
+ require_once APPPATH.'config/database.php';
+
+ // Set up class loading. You could use different autoloaders, provided by your favorite framework,
+ // if you want to.
+ require_once APPPATH.'libraries/Doctrine/Common/ClassLoader.php';
+
+ $doctrineClassLoader = new ClassLoader('Doctrine', APPPATH.'libraries');
+ $doctrineClassLoader->register();
+ $entitiesClassLoader = new ClassLoader('models', rtrim(APPPATH, "/" ));
+ $entitiesClassLoader->register();
+ $proxiesClassLoader = new ClassLoader('Proxies', APPPATH.'models/proxies');
+ $proxiesClassLoader->register();
+
+ // Set up caches
+ $config = new Configuration;
+ $cache = new ArrayCache;
+ $config->setMetadataCacheImpl($cache);
+ $config->setQueryCacheImpl($cache);
+
+ // Proxy configuration
+ $config->setProxyDir(APPPATH.'/models/proxies');
+ $config->setProxyNamespace('Proxies');
+
+ // Set up logger
+ $logger = new EchoSqlLogger;
+ $config->setSqlLogger($logger);
+
+ $config->setAutoGenerateProxyClasses( TRUE );
+
+ // Database connection information
+ $connectionOptions = array(
+ 'driver' => 'pdo_mysql',
+ 'user' => $db['default']['username'],
+ 'password' => $db['default']['password'],
+ 'host' => $db['default']['hostname'],
+ 'dbname' => $db['default']['database']
+ );
+
+ // Create EntityManager
+ $this->em = EntityManager::create($connectionOptions, $config);
+ }
+ }
+
+Please note that this is a development configuration; for a production system you'll want to use a real caching system like APC, get rid of EchoSqlLogger, and turn off autoGenerateProxyClasses.
+
+For more details, consult the [Doctrine 2 Configuration documentation](http://www.doctrine-project.org/documentation/manual/2_0/en/configuration#configuration-options).
+
+++ Now to use it
+
+Whenever you need a reference to the entity manager inside one of your controllers, views, or models you can do this:
+
+ [php]
+ $em = $this->doctrine->em;
+
+That's all there is to it. Once you get the reference to your EntityManager do your Doctrine 2.0 voodoo as normal.
+
+Note: If you do not choose to autoload the Doctrine library, you will need to put this line before you get a reference to it:
+
+ [php]
+ $this->load->library('doctrine');
+
+Good luck!
diff --git a/cookbook/en/validation-of-entities.txt b/cookbook/en/validation-of-entities.txt
new file mode 100644
index 000000000..739a608d2
--- /dev/null
+++ b/cookbook/en/validation-of-entities.txt
@@ -0,0 +1,114 @@
+Doctrine 2 does not ship with any internal validators, the reason being that
+we think all the frameworks out there already ship with quite decents ones that can be integrated
+into your Domain easily. What we offer are hooks to execute any kind of validation.
+
+> **Note**
+> You don't need to validate your entities in the lifecycle events. Its only
+> one of many options. Of course you can also perform validations in value setters
+> or any other method of your entities that are used in your code.
+
+Entities can register lifecycle evnt methods with Doctrine that are called on
+different occasions. For validation we would need to hook into the
+events called before persisting and updating. Even though we don't support
+validation out of the box, the implementation is even simpler than in Doctrine 1
+and you will get the additional benefit of being able to re-use your validation
+in any other part of your domain.
+
+Say we have an `Order` with several `OrderLine` instances. We never want to
+allow any customer to order for a larger sum than he is allowed to:
+
+ [php]
+ class Order
+ {
+ public function assertCustomerAllowedBuying()
+ {
+ $orderLimit = $this->customer->getOrderLimit();
+
+ $amount = 0;
+ foreach ($this->orderLines AS $line) {
+ $amount += $line->getAmount();
+ }
+
+ if ($amount > $orderLimit) {
+ throw new CustomerOrderLimitExceededException();
+ }
+ }
+ }
+
+Now this is some pretty important piece of business logic in your code, enforcing
+it at any time is important so that customers with a unknown reputation don't
+owe your business too much money.
+
+We can enforce this constraint in any of the metadata drivers. First Annotations:
+
+ [php]
+ /**
+ * @Entity
+ * @HasLifecycleCallbacks
+ */
+ class Order
+ {
+ /**
+ * @PrePersist @PreUpdate
+ */
+ public function assertCustomerAllowedBuying() {}
+ }
+
+In XML Mappings:
+
+ [xml]
+
+
+
+
+
+
+
+
+
+YAML needs some little change yet, to allow multiple lifecycle events for one method,
+this will happen before Beta 1 though.
+
+Now validation is performed whenever you call `EntityManager#persist($order)`
+or when you call `EntityManager#flush()` and an order is about to be updated.
+Any Exception that happens in the lifecycle callbacks will be catched by the
+EntityManager and the current transaction is rolled back.
+
+Of course you can do any type of primitive checks, not null, email-validation, string size,
+integer and date ranges in your validation callbacks.
+
+ [php]
+ class Order
+ {
+ /**
+ * @PrePersist @PreUpdate
+ */
+ public function validate()
+ {
+ if (!($this->plannedShipDate instanceof DateTime)) {
+ throw new ValidateException();
+ }
+
+ if ($this->plannedShipDate->format('U') < time()) {
+ throw new ValidateException();
+ }
+
+ if ($this->customer == null) {
+ throw new OrderRequiresCustomerException();
+ }
+ }
+ }
+
+What is nice about lifecycle events is, you can also re-use the methods at other places
+in your domain, for example in combination with your form library.
+Additionally there is no limitation in the number of methods you register
+on one particular event, i.e. you can register multiple methods for validation in "PrePersist"
+or "PreUpdate" or mix and share them in any combinations between those two events.
+
+There is no limit to what you can and can't validate in "PrePersist" and "PreUpdate" aslong as
+you don't create new entity instances. This was already discussed in the previous
+blog post on the Versionable extension, which requires another type of event called "onFlush".
+
+Further readings:
+
+* [Doctrine 2 Manual: Events](http://www.doctrine-project.org/documentation/manual/2_0/en/events#lifecycle-events)
\ No newline at end of file
diff --git a/dbal/manual/en.txt b/dbal/manual/en.txt
deleted file mode 100644
index 8383139ae..000000000
--- a/dbal/manual/en.txt
+++ /dev/null
@@ -1 +0,0 @@
-+ DBAL
\ No newline at end of file
diff --git a/dbal/manual/en/dbal.txt b/dbal/manual/en/dbal.txt
deleted file mode 100644
index 452f45646..000000000
--- a/dbal/manual/en/dbal.txt
+++ /dev/null
@@ -1,245 +0,0 @@
-The Doctrine 2 database layer can be used independently of the object-relational mapping. It offers a leightweight abstraction layer around a PDO like API and allows optional access to lots of convenience functionality aswell as the ability to generate platform independent DQL and DDL statements.
-
-++ Configuration
-
-You can create a Doctrine Connection by using the `Doctrine\DBAL\DriverManager` class.
-
- [php]
- $config = new \Doctrine\DBAL\Configuration();
- //..
-
- $connectionParams = array(
- 'dbname' => 'mydb',
- 'user' => 'user',
- 'password' => 'secret',
- 'host' => 'locahlost',
- 'driver' => 'pdo_mysql',
- );
- $conn = DriverManager::getConnection($connectionParams);
-
-The `DriverManager` returns an instance of `Doctrine\DBAL\Connection` which is a wrapper around any configured database driver, for example the PDO Mysql driver in the previous example.
-
-+++ Connection Options
-
-The `$connectionOptions` passed as the first argument to `EntityManager::create()` has to be either an array
-or an instance of `Doctrine\DBAL\Connection`. If an array is passed it is directly passed along to the
-DBAL Factory `Doctrine\DBAL\DriverManager::getConnection()`. The following option keys can be specified
-to create your connection:
-
-++++ Driver Management Options:
-
-* driver - Allows to specify the default drivers shipped with Doctrine 2, 'pdo_mysql', 'pdo_sqlite', 'pdo_pgsql, and 'oci'.
-* driverClass - If no 'driver' is specified this allows usage of a userland implementation of Doctrine\DBAL\Driver.
-* pdo - If PDO is already instantiated for Mysql, SqLite or PgSQL this key can be used to pass this instance into Doctrine.
-* wrapperClass - By default Doctrine\DBAL\Connection is wrapped around each driver, however this option allows to specify a userland sub-class.
-
-++++ Driver Configuration Options:
-
-Common Configuration Options across all database drivers:
-
-* platform - An instance of `Doctrine\DBAL\Platforms\AbstractPlatform`. This is only required for userland implementations, each driver shipped with Doctrine 2 has a default platform.
-* user - Username required to connect to the database.
-* password - Password required to connect to the database.
-* driverOptions - Array of options passed to the driver instance on calling to Driver::connect.
-
-Driver Configuration Options are different for each Database Driver, here are some of the db specific ones:
-
-* host - Database host (Mysql, Pgsql, Oracle)
-* port - Database port (Mysql, Pgsql, Oracle)
-* dbname - Name of the database/schema to connect to. (Mysql, Pgsql, Oracle)
-* unix_socket - Name of the socket used to connect to the database. (Mysql)
-* charset - The charset used when connecting to the database. (Oracle)
-* path - The filesystem path to the database (Sqlite)
-* memory - True if the sqlite database should be in memory. (Sqlite)
-
-+++ DBAL Events
-
-Both `Doctrine\DBAL\DriverManager` and `Doctrine\DBAL\Connection` accept an instance of `Doctrine\Common\EventManager`.
-The EventManager has a couple of events inside the DBAL layer that are triggered for the user to listen to:
-
-++++ PostConnect Event
-
-`Doctrine\DBAL\Events::postConnect` is triggered right after the connection to the database is established. It allows
-to specify any relevant connection specific options and gives access to the `Doctrine\DBAL\Connection` instance
-that is responsible for the connection management via an instance of `Doctrine\DBAL\Event\ConnectionEventArgs`
-event arguments instance.
-
-Doctrine is already shipped with two implementations for the "PostConnect" event:
-
-* `Doctrine\DBAL\Event\Listeners\OracleSessionInit` allows to specify any number of Oracle Session related enviroment variables that are set right after the connection is established.
-* `Doctrine\DBAL\Event\Listeners\MysqlSessionInit` allows to specify the Charset and Collation of the Client Connection if these options are not configured correctly on the MySQL server side.
-
-You can register events by subscribing them to the `EventManager` instance passed to the Connection factory:
-
- [php]
- $evm = new EventManager(),
- $evm->addEventSubscriber(new MysqlSessionInit('UTF-8'));
-
- $conn = DriverManager::getConnection($connectionParams, null, $evm);
-
-++ DBAL API
-
-+++ DBAL Architecture
-
-The DBAL is seperated into several different packages that perfectly seperate responsibilities of the different RDBMS layers.
-
-* **Drivers** abstract a PHP specific database API by enforcing two interfaces `\Doctrine\DBAL\Driver\Driver` and `\Doctrine\DBAL\Driver\Statement` which require exactly the same methods as PDO.
-* **Platforms** abstract the generation of queries and which database features a platform supports. The `\Doctrine\DBAL\Platforms\AbstractPlatform` defines the common denominator of what a database platform has to publish to the userland, to be fully supportable by Doctrine. This includes the SchemaTool, Transaction Isolation and many other features. The Database platform for MySQL for example can be used by all 3 mysql extensions, PDO, Mysqli and ext/mysql.
-* **Logging** holds the interface and some implementations for debugging of Doctrine SQL query execution during a request.
-* **Schema** offers an API for each database platform to execute DDL statements against your platform or retrieve metadata about it. It also holds the Schema Abstraction Layer which is used by the different Schema Management facilities of Doctrine DBAL and ORM.
-* **Types** offers an abstraction layer for the converting and generation of types between Databases and PHP.
-
-+++ Data Retrieval and Manipulation
-
- The following methods exist for executing queries against your configured database, three very generic methods and some advanced retrievial methods:
-
-* `prepare($sql)` - Prepare a given sql statement and return the `\Doctrine\DBAL\Driver\Statement` instance.
-* `executeUpdate($sql, array $params)` - Executes a prepared statement with the given sql and parameters and returns the affected rows count.
-* `execute($sql, array $params)` - Creates a prepared statement for the given sql and passes the parameters to the execute method, then returning the statement.
-* `fetchAll($sql, array $params)` - Execute the query and fetch all results into an array.
-* `fetchArray($sql, array $params)` - Numeric index retrieval of first result row of the given query.
-* `fetchBoth($sql, array $params)` - Both numeric and assoc column name retrieval of the first result row.
-* `fetchColumn($sql, array $params, $colnum)` - Retrieve only the given column of the first result row.
-* `fetchRow($sql, array $params)` - Retrieve assoc row of the first result row.
-* `select($sql, $limit, $offset)` - Modify the given query with a limit clause.
-
-There are also convenience methods for data manipulation queries:
-
-* `delete($tableName, array $identifier)` - Delete all rows of a table matching the given identifier, where keys are column names.
-* `insert($tableName, array $data)` - Insert a row into the given table name using the key value pairs of data.
-* `update($tableName, array $data, array $identifier)` - Update all rows for the matching key value identifiers with the given data.
-
-By default the Doctrine DBAL does no escaping. Escaping is a very tricky business to do automagically, therefore there is none by default. The ORM internally escapes all your values, because it has lots of metadata available about the current context. When you use the Doctrine DBAL as standalone, you have to take care of this yourself. The following methods help you with it:
-
-* `quote($input, $type=null)` - Quote a value
-* `quoteIdentifier($identifier)`- Quote an identifier according to the platform details.
-
-+++ Transactions
-
-Doctrine handles transactions with a PDO like API, having methods for `beginTransaction()`, `commit()` and `rollBack()`. For consistency across different drivers Doctrine also handles the nesting of transactions internally. You can call `beginTransaction()` more than once, and only a matching amount of calls to `commit()` triggers the commit to the database. The Doctrine connectionalso has a method to set the transaction isolation level of the connection as supported by the underlying database.
-
- [php]
- class Connection
- {
- /**
- * Constant for transaction isolation level READ UNCOMMITTED.
- */
- const TRANSACTION_READ_UNCOMMITTED = 1;
-
- /**
- * Constant for transaction isolation level READ COMMITTED.
- */
- const TRANSACTION_READ_COMMITTED = 2;
-
- /**
- * Constant for transaction isolation level REPEATABLE READ.
- */
- const TRANSACTION_REPEATABLE_READ = 3;
-
- /**
- * Constant for transaction isolation level SERIALIZABLE.
- */
- const TRANSACTION_SERIALIZABLE = 4;
- }
-
-A transaction with Doctrine DBAL might then look like:
-
- [php]
- $conn->setTransactionIsolationLevel(Connection::TRANSACTION_SERIALIZABLE);
-
- try{
- $conn->beginTransaction();
- // do stuff
- $conn->commit();
- } catch(\Exception $e) {
- $conn->rollback();
- }
-
-++ Schema Representation
-
-Doctrine has a very powerful abstraction of database schemas. It offers an object-oriented representation of a database schema with support for all the details of Tables, Sequences, Indexes and Foreign Keys. These Schema instances generate a representation that is equal for all the supported platforms. Internally this functionality is used by the ORM Schema Tool to offer you create, drop and update database schema methods from your Doctrine ORM Metadata model. Up to very specific functionality of your database system this allows you to generate SQL code that makes your Domain model work.
-
-You will be pleased to hear, that Schema representation is completly decoupled from the Doctrine ORM though, that is you can also use it in any other project to implement database migrations or for SQL schema generation for any metadata model that your application has. You can easily generate a Schema, as a simple example shows:
-
- [php]
- $schema = new \Doctrine\DBAL\Schema\Schema();
- $myTable = $schema->createTable("my_table");
- $myTable->addColumn("id", "integer", array("unsigned" => true));
- $myTable->addColumn("username", "string", array("length" => 32));
- $myTable->setPrimaryKey(array("id"));
- $myTable->addUniqueIndex(array("username"));
- $schema->createSequence("my_table_seq");
-
- $myForeign = $schema->createTable("my_foreign");
- $myForeign->addColumn("id", "integer");
- $myForeign->addColumn("user_id", "integer");
- $myForeign->addForeignKeyConstraint($myTable, array("user_id"), array("id"), array("onUpdate" => "CASCADE"));
-
- $queries = $schema->toSql($myPlatform); // get queries to create this schema.
- $dropSchema = $schema->toDropSql($myPlatform); // get queries to safely delete this schema.
-
-Now if you want to compare this schema with another schema, you can use the `Comparator` class to get instances of `SchemaDiff`, `TableDiff` and `ColumnDiff`, aswell as information about other foreign key, sequence and index changes.
-
- [php]
- $comparator = new \Doctrine\DBAL\Schema\Comparator();
- $schemaDiff = $comparator->compare($fromSchema, $toSchema);
-
- $queries = $schemaDiff->toSql($myPlatform); // queries to get from one to another schema.
- $saveQueries = $schemaDiff->toSaveSql($myPlatform);
-
-The Save Diff mode is a specific mode that prevents the deletion of tables and sequences that might occour when making a diff of your schema. This is often necessary when your target schema is not complete but only describes a subset of your application.
-
-All methods that generate SQL queries for you make much effort to get the order of generation correct, so that no problems will ever occour with missing links of foreign keys.
-
-++ Platforms
-
-Platforms abstract query generation and specifics of the RDBMS featuresets. In most cases you don't need to interact with this package alot, but there might be certain cases when you are programming database independent where you want to access the platform to generate queries for you.
-
-The platform can be accessed from any `Doctrine\DBAL\Connection` instance by calling the `getDatabasePlatform()` method.
-
-You can use your own platform by specifying the 'platform' key with an instance of your own platform:
-
- [php]
- $myPlatform = new MyPlatform();
- $options = array(
- 'driver' => 'pdo_sqlite',
- 'path' => 'database.sqlite',
- 'platform' => $myPlatform
- );
-
-This way you can optimize your schema or generated SQL code with features that might not be portable for instance,
-however are required for your special needs.
-
-++ Schema Manager
-
-A Schema Manager instance helps you with the abstraction of the generation of SQL assets such as Tables, Sequences, Foreign Keys and Indexes. You can use any of the Schema Asset classes `Table`, `Sequence`, `ForeignKeyConstraint` and `Index` for use with the methods of the style `dropAndCreate(AssetName)($asset)`, `drop(AssetName)($asset)` and `create(AssetName)($asset)`.
-
-You also have methods to retrieve instances of those types from the current database you are connected to. These methods are:
-
-* `listDatabases()`
-* `listSequences()`
-* `listTableColumns($tableName)`
-* `listTableDetails($tableName)`
-* `listTableForeignKeys($tableName)`
-* `listTableIndexes($tableName)`
-* `listTables()`
-* `listUsers()`
-* `listViews()`
-
-For a complete representation of the current database you can use the `createSchema()` method which returns an instance of Schema, which you can use in conjunction with the SchemaTool or Schema Comparator.
-
-++ Supporting other Databases
-
-To support a database which is not currently shipped with Doctrine you have to implement the following interfaces and abstract classes:
-
-* `\Doctrine\DBAL\Driver\Driver`
-* `\Doctrine\DBAL\Driver\Statement`
-* `\Doctrine\DBAL\Platforms\AbstractPlatform`
-* `\Doctrine\DBAL\Schema\AbstractSchemaManager`
-
-For an already supported platform but unsupported driver you only need to implement the first two interfaces, since the SQL Generation and Schema Management is already supported by the respective platform and schema instances. You can also make use of several Abstract Unittests in the `\Doctrine\Tests\DBAL` package to check if your platform behaves like all the others which is necessary for SchemaTool support, namely:
-
-* `\Doctrine\Tests\DBAL\Platforms\AbstractPlatformTestCase`
-* `\Doctrine\Tests\DBAL\Functional\Schema\AbstractSchemaManagerTestCase`
-
-We would be very happy if any support for new databases would be contributed back to Doctrine to make it an even better product.
diff --git a/manual/en.txt b/manual/en.txt
new file mode 100644
index 000000000..b17808194
--- /dev/null
+++ b/manual/en.txt
@@ -0,0 +1,20 @@
++ Introduction
++ Architecture
++ Configuration
++ Basic Mapping
++ Association Mapping
++ Inheritance Mapping
++ Working with objects
++ Transactions and Concurrency
++ Events
++ Batch processing
++ DQL (Doctrine Query Language)
++ Query Builder
++ Native SQL
++ XML Mapping
++ YAML Mapping
++ Annotations Reference
++ Caching
++ Improving Performance
++ Tools
++ Best Practices
\ No newline at end of file
diff --git a/manual/en/annotations-reference.txt b/manual/en/annotations-reference.txt
new file mode 100644
index 000000000..cf5eece3b
--- /dev/null
+++ b/manual/en/annotations-reference.txt
@@ -0,0 +1,557 @@
+In this chapter a reference of every Doctrine 2 Annotation is given with short explanations on their context and usage.
+
+++ Index
+
+* [@Column](#ann_column)
+* [@ChangeTrackingPolicy](#ann_changetrackingpolicy)
+* [@DiscriminatorColumn](#ann_discriminatorcolumn)
+* [@DiscriminatorMap](#ann_discriminatormap)
+* [@Entity](#ann_entity)
+* [@GeneratedValue](#ann_generatedvalue)
+* [@HasLifecycleCallbacks](#ann_haslifecyclecallbacks)
+* [@Index](#ann_indexes)
+* [@Id](#ann_id)
+* [@InheritanceType](#ann_inheritancetype)
+* [@JoinColumn](#ann_joincolumn)
+* [@JoinTable](#ann_jointable)
+* [@ManyToOne](#ann_manytoone)
+* [@ManyToMany](#ann_manytomany)
+* [@MappedSuperclass](#ann_mappedsuperclass)
+* [@OneToOne](#ann_onetoone)
+* [@OneToMany](#ann_onetomany)
+* [@OrderBy](#ann_orderby)
+* [@PostLoad](#ann_postload)
+* [@PostPersist](#ann_postpersist)
+* [@PostRemove](#ann_postremove)
+* [@PostUpdate](#ann_postupdate)
+* [@PrePersist](#ann_prepersist)
+* [@PreRemove](#ann_preremove)
+* [@PreUpdate](#ann_preupdate)
+* [@SequenceGenerator](#ann_sequencegenerator)
+* [@Table](#ann_table)
+* [@UniqueConstraint](#ann_uniqueconstraint)
+* [@Version](#ann_version)
+
+++ Reference
+
+
++++ @Column
+
+Marks an annotated instance variable as "persistent". It has to be inside the instance variables PHP DocBlock comment.
+Any value hold inside this variable will be saved to and loaded from the database as part of the lifecycle of the instance variables entity-class.
+
+Required attributes:
+
+* type - Name of the Doctrine Type which is converted between PHP and Database representation.
+
+Optional attributes:
+
+* name - By default the property name is used for the database column name also, however the 'name' attribute allows you to determine the column name.
+* length - Used by the "string" type to determine its maximum length in the database. Doctrine does not validate the length of a string values for you.
+* precision - The precision for a decimal (exact numeric) column (Applies only for decimal column)
+* scale - The scale for a decimal (exact numeric) column (Applies only for decimal column)
+* unique - Boolean value to determine if the value of the column should be unique accross all rows of the underlying entities table.
+* nullable - Determines if NULL values allowed for this column.
+* columnDefinition - DDL SQL snippet that starts after the column name and specificies the complete (non-portable!) column definition. This attribute allows to make use of advanced RMDBS features. However you should make careful use of this feature and the consequences. Additionally you should remember that the "type" attribute still handles the conversion between PHP and Database values. If you use this attribute on a column that is used for joins between tables you should also take a look at [@JoinColumn](#ann_joincolumn).
+
+Examples:
+
+ /**
+ * @Column(type="string", length=32, unique=true, nullable=false)
+ */
+ protected $username;
+
+ /**
+ * @Column(type="string", columnDefinition="CHAR(2) NOT NULL")
+ */
+ protected $country;
+
+ /**
+ * @Column(type="decimal", precision=2, scale=1)
+ */
+ protected $height;
+
+
++++ @ChangeTrackingPolicy
+
+The Change Tracking Policy annotation allows to specify how the Doctrine 2 UnitOfWork should detect changes
+in properties of entities during flush. By default each entity is checked according to a deferred implict
+strategy, which means upon flush UnitOfWork compares all the properties of an entity to a previously stored
+snapshot. This works out of the box, however you might want to tweak the flush performance where using
+another change tracking policy is an interesting option.
+
+The [details on all the available change tracking policies](/../configuration#change-tracking-policies)
+can be found in the configuration section.
+
+Example:
+
+ /**
+ * @Entity
+ * @ChangeTrackingPolicy("DEFERRED_IMPLICIT")
+ * @ChangeTrackingPolicy("DEFERRED_EXPLICIT")
+ * @ChangeTrackingPolicy("NOTIFY")
+ */
+ class User {}
+
+
++++ @DiscrimnatorColumn
+
+This annotation is a required annotation for the topmost/super class of an inheritance hierachy. It specifies
+the details of the column which saves the name of the class, which the entity is actually instantiated as.
+
+Required attributes:
+
+* name - The column name of the discriminator. This name is also used during Array hydration as key to specify the class-name.
+
+Optional attributes:
+
+* type - By default this is string.
+* length - By default this is 255.
+
+
++++ @DiscriminatorMap
+
+The discrimnator map is a required annotation on the top-most/super class in an inheritance hierachy. It takes
+an array as only argument which defines which class should be saved under which name in the database. Keys
+are the database value and values are the classes, either as fully- or as unqualified class names depending
+if the classes are in the namespace or not.
+
+ /**
+ * @Entity
+ * @InheritanceType("JOINED")
+ * @DiscriminatorColumn(name="discr", type="string")
+ * @DiscriminatorMap({"person" = "Person", "employee" = "Employee"})
+ */
+ class Person
+ {
+ // ...
+ }
+
+
+
++++ @Entity
+
+Required annotation to mark a PHP class as Entity. Doctrine manages the persistence of all classes marked as entity.
+
+Optional attributes:
+
+* repositoryClass - Specifies the FQCN of a subclass of the Doctrine\ORM\EntityRepository. Use of repositories for entites is encouraged to keep specialized DQL and SQL operations separated from the Model/Domain Layer.
+
+Example:
+
+ /**
+ * @Entity(repositoryClass="MyProject\UserRepository")
+ */
+ class User
+ {
+ //...
+ }
+
+
++++ @GeneratedValue
+
+Specifies which strategy is used for identifier generation for an instance variable which is annotated by [@Id](#ann_id).
+This annotation is optional and only has meaning when used in conjunction with @Id.
+
+If this annotation is not specified with @Id the NONE strategy is used as default.
+
+Required attributes:
+
+* strategy - Set the name of the identifier generation strategy. Valid values are AUTO, SEQUENCE, TABLE, IDENTITY and NONE.
+
+Example:
+
+ /**
+ * @Id
+ * @Column(type="integer")
+ * @generatedValue(strategy="IDENTITY")
+ */
+ protected $id = null;
+
+
++++ @HasLifecycleCallbacks
+
+Annotation which has to be set on the entity-class PHP DocBlock to notify Doctrine that this entity has entity life-cycle
+callback annotations set on at least one of its methods. Using @PostLoad, @PrePersist, @PostPersist, @PreRemove, @PostRemove,
+@PreUpdate or @PostUpdate without this marker annotation will make Doctrine ignore the callbacks.
+
+Example:
+
+ /**
+ * @Entity
+ * @HasLifecycleCallbacks
+ */
+ class User
+ {
+ /**
+ * @PostPersist
+ */
+ public function sendOptinMail() {}
+ }
+
+
++++ @Index
+
+Annotation is used inside the [@Table](#ann_table) annotation on the entity-class level. It allows to hint the
+SchemaTool to generate a database index on the specified table columns. It only has meaning in the SchemaTool
+schema generation context.
+
+Required attributes:
+
+* name - Name of the Index
+* columns - Array of columns.
+
+Example:
+
+ /**
+ * @Entity
+ * @Table(name="ecommerce_products",indexes={@index(name="search_idx", columns={"name", "email"})})
+ */
+ class ECommerceProduct
+ {
+ }
+
+
++++ @Id
+
+The annotated instance variable will be marked as entity identifier, the primary key in the database.
+This annotation is a marker only and has no required or optional attributes. For entites that have multiple
+identifier columns each column has to be marked with @Id.
+
+Example:
+
+ /**
+ * @Id
+ * @Column(type="integer")
+ */
+ protected $id = null;
+
+
++++ @InheritanceType
+
+In an inheritance hierachy you have to use this annotation on the topmost/super class to define which
+strategy should be used for inheritance. Currently Single Table and Class Table Inheritance are supported.
+
+This annotation has always been used in conjunction with the [@DiscriminatorMap](#ann_discriminatormap) and
+[@DiscriminatorColumn](#ann_discriminatorcolumn) annotations.
+
+Examples:
+
+ /**
+ * @Entity
+ * @InheritanceType("SINGLE_TABLE")
+ * @DiscriminatorColumn(name="discr", type="string")
+ * @DiscriminatorMap({"person" = "Person", "employee" = "Employee"})
+ */
+ class Person
+ {
+ // ...
+ }
+
+ /**
+ * @Entity
+ * @InheritanceType("JOINED")
+ * @DiscriminatorColumn(name="discr", type="string")
+ * @DiscriminatorMap({"person" = "Person", "employee" = "Employee"})
+ */
+ class Person
+ {
+ // ...
+ }
+
+
++++ @JoinColumn
+
+This annotation is used in the context of relations in [@ManyToOne](#ann_manytoone), [@OneToOne](#ann_onetoone) fields
+and in the Context of [@JoinTable](#ann_jointable) nested inside a @ManyToMany. This annotation is not required.
+If its not specified the attributes *name* and *referencedColumnName* are infered from the table and primary key names.
+
+Required attributes:
+
+* name - Column name that holds the foreign key identifier for this relation. In the context of @JoinTable it specifies the column name in the join table.
+* referencedColumnName - Name of the primary key identifier that is used for joining of this relation.
+
+Optional attributes:
+
+* unique - Determines if this relation exclusive between the affected entities and should be enforced so on the database constraint level. Defaults to false.
+* nullable - Determine if the related entity is required, or if null is an allowed state for the relation. Defaults to true.
+* onDelete - Cascade Action (Database-level)
+* onUpdate - Cascade Action (Database-level)
+* columnDefinition - DDL SQL snippet that starts after the column name and specificies the complete (non-portable!) column definition. This attribute allows to make use of advanced RMDBS features. Using this attribute on @JoinColumn is necessary if you need slightly different column definitions for joining columns, for example regarding NULL/NOT NULL defaults. However by default a "columnDefinition" attribute on [@Column](#ann_column) also sets the related @JoinColumn's columnDefinition. This is necessary to make foreign keys work.
+
+Example:
+
+ /**
+ * @OneToOne(targetEntity="Customer")
+ * @JoinColumn(name="customer_id", referencedColumnName="id")
+ */
+ private $customer;
+
+
++++ @JoinColumns
+
+An array of @JoinColumn annotations for a [@ManyToOne](#ann_manytoone) or [@OneToOne](#ann_onetoone) relation
+with an entity that has multiple identifiers.
+
+
++++ @JoinTable
+
+Using [@OneToMany](#ann_onetomany) or [@ManyToMany](#ann_manytomany) on the owning side of the relation requires to specifiy
+the @JoinTable annotation which describes the details of the database join table. If you do not specify @JoinTable on
+these relations reasonable mapping defaults apply using the affected table and the column names.
+
+Required attributes:
+
+* name - Database name of the join-table
+* joinColumns - An array of @JoinColumn annotations describing the join-relation between the owning entites table and the join table.
+* inverseJoinColumns - An array of @JoinColumn annotations describing the join-relation between the inverse entities table and the join table.
+
+Optional attributes:
+
+* schema - Database schema name of this table.
+
+Example:
+
+ /**
+ * @ManyToMany(targetEntity="Phonenumber")
+ * @JoinTable(name="users_phonenumbers",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="phonenumber_id", referencedColumnName="id", unique=true)}
+ * )
+ */
+ public $phonenumbers;
+
+
++++ @ManyToOne
+
+Defines that the annotated instance variable holds a reference that describes a many-to-one relationship between two entities.
+
+Required attributes:
+
+* targetEntity - FQCN of the referenced target entity. Can be the unqualified class name if both classes are in the same namespace.
+
+Optional attributes:
+
+* cascade - Cascade Option
+* fetch - One of LAZY or EAGER
+
+Example:
+
+ /**
+ * @ManyToOne(targetEntity="Cart", cascade="ALL", fetch="EAGER")
+ */
+ private $cart;
+
+
++++ @ManyToMany
+
+Defines an instance variable holds a many-to-many relationship between two entities. [@JoinTable](#ann_jointable)
+is an additional, optional annotation that has reasonable default configuration values using the table
+and names of the two related entities.
+
+Required attributes:
+
+* targetEntity - FQCN of the referenced target entity. Can be the unqualified class name if both classes are in the same namespace.
+
+Optional attributes:
+
+* mappedBy - This option specifies the property name on the targetEntity that is the owning side of this relation. Its a required attribute for the inverse side of a relationship.
+* cascade - Cascade Option
+* fetch - One of LAZY or EAGER
+
+Example:
+
+ /**
+ * Owning Side
+ *
+ * @ManyToMany(targetEntity="Group")
+ * @JoinTable(name="user_groups",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id")}
+ * )
+ */
+ private $groups;
+
+ /**
+ * Inverse Side
+ *
+ * @ManyToMany(targetEntity="User", mappedBy="groups")
+ */
+ private $features;
+
+
++++ @MappedSuperclass
+
+An mapped superclass is an abstract or concrete class that provides persistent entity state and mapping information
+for its subclasses, but which is not itself an entity. This annotation is specified on the Class docblock
+and has no additional attributes.
+
+The @MappedSuperclass annotation cannot be used in conjunction with @Entity. See the Inheritance Mapping
+section for [more details on the restrictions of mapped superclasses](/../inheritance-mapping#mapped-superclasses).
+
+
++++ @OnetoOne
+
+The @OneToOne annotation works almost exactly as the [@ManyToOne](#ann_manytoone) with one additional option
+that can be specified. The configuration defaults for [@JoinColumn](#ann_joincolumn) using the target entity table and primary key column names
+apply here too.
+
+Required attributes:
+
+* targetEntity - FQCN of the referenced target entity. Can be the unqualified class name if both classes are in the same namespace.
+
+Optional attributes:
+
+* cascade - Cascade Option
+* fetch - One of LAZY or EAGER
+* orphanRemoval - Boolean that specifies if orphans, inverse OneToOne entities that are not connected to any
+owning instance, should be removed by Doctrine. Defaults to false.
+
+
++++ @OneToMany
+
+
++++ @OrderBy
+
+Optional annotation that can be specified with a [@ManyToMany](#ann_manytomany) or [@OneToMany](#ann_onetomany)
+annotation to specify by which criteria the collection should be retrieved from the database by using an ORDER BY
+clause.
+
+This annotation requires a single non-attributed value with an DQL snippet:
+
+Example:
+
+ /**
+ * @ManyToMany(targetEntity="Group")
+ * @OrderBy({"name" = "ASC"})
+ */
+ private $groups;
+
+The DQL Snippet in OrderBy is only allowed to consist of unqualified,
+unquoted field names and of an optional ASC/DESC positional statement.
+Multiple Fields are separated by a comma (,). The referenced field
+names have to exist on the `targetEntity` class of the `@ManyToMany` or
+`@OneToMany` annotation.
+
+
++++ @PostLoad
+
+Marks a method on the entity to be called as a @PostLoad event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PostPersist
+
+Marks a method on the entity to be called as a @PostPersist event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PostRemove
+
+Marks a method on the entity to be called as a @PostRemove event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PostUpdate
+
+Marks a method on the entity to be called as a @PostUpdate event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PrePersist
+
+Marks a method on the entity to be called as a @PrePersist event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PreRemove
+
+Marks a method on the entity to be called as a @PreRemove event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @PreUpdate
+
+Marks a method on the entity to be called as a @PreUpdate event. Only works with @HasLifecycleCallbacks in the entity class PHP DocBlock.
+
+
++++ @SequenceGenerator
+
+For the use with @generatedValue(strategy="SEQUENCE") this annotation allows to specifiy details about the sequence,
+such as the increment size and initial values of the sequence.
+
+Required attributes:
+
+* sequenceName - Name of the sequence
+
+Optional attributes:
+
+* allocationSize - Increment the sequence by the allocation size when its fetched. A value larger than 1 allows to optimize for scenarios where you create more than one new entity per request. Defaults to 10
+* initialValue - Where does the sequence start, defaults to 1.
+
+Example:
+
+ /**
+ * @Id
+ * @GeneratedValue(strategy="SEQUENCE")
+ * @Column(type="integer")
+ * @SequenceGenerator(sequenceName="tablename_seq", initialValue=1, allocationSize=100)
+ */
+ protected $id = null;
+
+
++++ @Table
+
+Annotation describes the table an entity is persisted in. It is placed on the entity-class PHP DocBlock and is optional.
+If it is not specified the table name will default to the entities unqualified classname.
+
+Required attributes:
+
+* name - Name of the table
+
+Optional attributes:
+
+* schema - Database schema name of this table.
+* indexes - Array of @Index annotations
+* uniqueConstraints - Array of @UniqueConstraint annotations.
+
+Example:
+
+ /**
+ * @Entity
+ * @Table(name="user",
+ * uniqueConstraints={@UniqueConstraint(name="user_unique",columns={"username"})},
+ * indexes={@Index(name="user_idx", columns={"email"})}
+ * )
+ */
+ class User { }
+
+
++++ @UniqueConstraint
+
+Annotation is used inside the [@Table](#ann_table) annotation on the entity-class level. It allows to hint the
+SchemaTool to generate a database unique constraint on the specified table columns. It only has meaning in the SchemaTool
+schema generation context.
+
+Required attributes:
+
+* name - Name of the Index
+* columns - Array of columns.
+
+Example:
+
+ /**
+ * @Entity
+ * @Table(name="ecommerce_products",uniqueConstraints={@UniqueConstraint(name="search_idx", columns={"name", "email"})})
+ */
+ class ECommerceProduct
+ {
+ }
+
+
++++ @Version
+
+Marker annotation that defines a specified column as version attribute used in an optimistic locking scenario.
+It only works on [@Column](#ann_column) annotations that have the type integer or datetime.
+
+Example:
+
+ /**
+ * @column(type="integer")
+ * @version
+ */
+ protected $version;
\ No newline at end of file
diff --git a/manual/en/architecture.txt b/manual/en/architecture.txt
new file mode 100644
index 000000000..45f10d160
--- /dev/null
+++ b/manual/en/architecture.txt
@@ -0,0 +1,81 @@
+This chapter gives an overview of the overall architecture, terminology and constraints of
+Doctrine 2. It is recommended to read this chapter carefully.
+
+++ Entities
+
+An entity is a lightweight persistent domain object. An entity can be any regular
+php class that obeys to the following restrictions:
+
+* An entity class must not be final or contain final methods.
+* An entity class must not implement `__clone` or [do so safely](http://www.doctrine-project.org/documentation/cookbook/2_0/en/implementing-wakeup-or-clone).
+* An entity class must not implement `__wakeup` or [do so safely](http://www.doctrine-project.org/documentation/cookbook/2_0/en/implementing-wakeup-or-clone).
+ Also consider implementing [Serializable](http://de3.php.net/manual/en/class.serializable.php]) instead.
+* Any two entity classes in a class hierarchy that inherit directly or indirectly from one another must not have a mapped property with the same name.
+ That is, if B inherits from A then B must not have a mapped field with the same name as an already mapped field that is inherited from A.
+
+Entities support inheritance, polymorphic associations, and polymorphic queries.
+Both abstract and concrete classes can be entities. Entities may extend non-entity
+classes as well as entity classes, and non-entity classes may extend entity classes.
+
+> **TIP**
+> The constructor of an entity is only ever invoked when *you* construct a new instance
+> with the *new* keyword. Doctrine never calls entity constructors, thus you are free to use
+> them as you wish and even have it require arguments of any type.
+
++++ Entity states
+
+An entity instance can be characterized as being NEW, MANAGED, DETACHED or REMOVED.
+
+* A NEW entity instance has no persistent identity, and is not yet associated with an EntityManager and a UnitOfWork (i.e. those just created with the "new" operator).
+* A MANAGED entity instance is an instance with a persistent identity that is associated with an EntityManager and whose persistence is thus managed.
+* A DETACHED entity instance is an instance with a persistent identity that is not (or no longer) associated with an EntityManager and a UnitOfWork.
+* A REMOVED entity instance is an instance with a persistent identity, associated with an EntityManager, that will be removed from the database upon transaction commit.
+
++++ Persistent fields
+
+The persistent state of an entity is represented by instance variables. An
+instance variable must be directly accessed only from within the methods of the
+entity by the entity instance itself. Instance variables must not be accessed by
+clients of the entity. The state of the entity is available to clients only through
+the entity’s methods, i.e. accessor methods (getter/setter methods) or other
+business methods.
+
+Collection-valued persistent fields and properties must be defined in terms of
+the `Doctrine\Common\Collections\Collection` interface. The collection
+implementation type may be used by the application to initialize fields or
+properties before the entity is made persistent. Once the entity becomes
+managed (or detached), subsequent access must be through the interface type.
+
++++ Serializing entities
+
+Serializing entities can be problematic and is not really recommended, at least not as long as an
+entity instance still holds references to proxy objects or is still managed by an EntityManager.
+If you intend to serialize (and unserialize) entity instances that still hold references to proxy objects
+you may run into problems with private properties because of technical limitations.
+Proxy objects implement `__sleep` and it is not possible for `__sleep` to return names of
+private properties in parent classes. On ther other hand it is not a solution for proxy objects
+to implement `Serializable` because Serializable does not work well with any potential cyclic
+object references (at least we did not find a way yet, if you did, please contact us).
+
+++ The EntityManager
+
+The `EntityManager` class is a central access point to the ORM functionality
+provided by Doctrine 2. The `EntityManager` API is used to manage the persistence
+of your objects and to query for persistent objects.
+
++++ Transactional write-behind
+
+An `EntityManager` and the underlying `UnitOfWork` employ a strategy called
+"transactional write-behind" that delays the execution of SQL statements in
+order to execute them in the most efficient way and to execute them at the end
+of a transaction so that all write locks are quickly released. You should see
+Doctrine as a tool to synchronize your in-memory objects with the database in
+well defined units of work. Work with your objects and modify them as usual and
+when you're done call `EntityManager#flush()` to make your changes persistent.
+
++++ The Unit of Work
+
+Internally an `EntityManager` uses a `UnitOfWork`, which is a typical
+implementation of the [Unit of Work pattern](http://martinfowler.com/eaaCatalog/unitOfWork.html), to keep track of all the things that need to be done
+the next time `flush` is invoked. You usually do not directly interact with
+a `UnitOfWork` but with the `EntityManager` instead.
\ No newline at end of file
diff --git a/manual/en/association-mapping.txt b/manual/en/association-mapping.txt
new file mode 100644
index 000000000..5190f6a14
--- /dev/null
+++ b/manual/en/association-mapping.txt
@@ -0,0 +1,429 @@
+This chapter explains how associations between entities are mapped with Doctrine. We start out with an explanation of the concept of owning and inverse sides which is important to understand when working with bidirectional associations. Please read these explanations carefully.
+
+++ Owning Side and Inverse Side
+
+When mapping bidirectional associations it is important to understand the concept of the owning and inverse sides. The following general rules apply:
+
+* Relationships may be bidirectional or unidirectional.
+* A bidirectional relationship has both an owning side and an inverse side.
+* A unidirectional relationship only has an owning side.
+* The owning side of a relationship determines the updates to the relationship in the database.
+
+
+The following rules apply to *bidirectional* associations:
+
+* The inverse side of a bidirectional relationship must refer to its owning side by use of the mappedBy attribute of the OneToOne, OneToMany, or ManyToMany mapping declaration. The mappedBy attribute designates the field in the entity that is the owner of the relationship.
+* The owning side of a bidirectional relationship must refer to its inverse side by use of the inversedBy attribute of the OneToOne, ManyToOne, or ManyToMany mapping declaration. The inversedBy attribute designates the field in the entity that is the inverse side of the relationship.
+* The many side of OneToMany/ManyToOne bidirectional relationships *must* be the owning side, hence the mappedBy element can not be specified on the ManyToOne side.
+* For OneToOne bidirectional relationships, the owning side corresponds to the side that contains the corresponding foreign key (@JoinColumn(s)).
+* For ManyToMany bidirectional relationships either side may be the owning side (the side that defines the @JoinTable and/or does not make use of the mappedBy attribute, thus using a default join table).
+
+Especially important is the following:
+
+**The owning side of a relationship determines the updates to the relationship in the database**.
+
+To fully understand this, remember how bidirectional associations are maintained
+in the object world. There are 2 references on each side of the association
+and these 2 references both represent the same association but can change
+independently of one another. Of course, in a correct application the semantics
+of the bidirectional association are properly maintained by the application
+developer (that's his responsiblity). Doctrine needs to know which of
+these two in-memory references is the one that should be persisted and which
+not. This is what the owning/inverse concept is mainly used for.
+
+**Changes made only to the inverse side of an association are ignored. Make sure to update both sides of a bidirectional association (or at least the owning side, from Doctrine's point of view)**
+
+The owning side of a bidirectional association is the side Doctrine "looks at" when determining
+the state of the association, and consequently whether there is anything to do to update the association
+in the database.
+
+> **NOTE**
+> "Owning side" and "inverse side" are technical concepts of the ORM technology, not concepts
+> of your domain model. What you consider as the owning side in your domain model can be different
+> from what the owning side is for Doctrine. These are unrelated.
+
+++ Collections
+
+In all the examples of many-valued associations in this manual we will make use of a `Collection` interface and a corresponding default implementation `ArrayCollection` that are defined in the `Doctrine\Common\Collections` namespace. Why do we need that? Doesn't that couple my domain model to Doctrine? Unfortunately, PHP arrays, while being great for many things, do not make up for good collections of business objects, especially not in the context of an ORM. The reason is that plain PHP arrays can not be transparently extended / instrumented in PHP code, which is necessary for a lot of advanced ORM features. The classes / interfaces that come closest to an OO collection are ArrayAccess and ArrayObject but until instances of these types can be used in all places where a plain array can be used (something that may happen in PHP6) their useability is fairly limited. You "can" type-hint on `ArrayAccess` instead of `Collection`, since the Collection interface extends `ArrayAccess`, but this will severely limit you in the way you can work with the collection, because the `ArrayAccess` API is (intentionally) very primitive and more importantly because you can not pass this collection to all the useful PHP array functions, which makes it very hard to work with.
+
+> **CAUTION**
+> The Collection interface and ArrayCollection class, like everything else in the
+> Doctrine\Common namespace, are neither part of the ORM, nor the DBAL, it is a plain PHP
+> class that has no outside dependencies apart from dependencies on PHP itself (and the
+> SPL). Therefore using this class in your domain classes and elsewhere does not introduce
+> a coupling to the persistence layer. The Collection class, like everything else in the
+> Common namespace, is not part of the persistence layer. You could even copy that class
+> over to your project if you want to remove Doctrine from your project and all your
+> domain classes will work the same as before.
+
+++ Mapping Defaults
+
+The @JoinColumn and @JoinTable definitions are usually optional and have sensible default values. The defaults for a join column in a one-to-one/many-to-one association is as follows:
+
+ name: "_id"
+ referencedColumnName: "id"
+
+As an example, consider this mapping:
+
+ [php]
+ /** @OneToOne(targetEntity="Shipping") */
+ private $shipping;
+
+This is essentially the same as the following, more verbose, mapping:
+
+ [php]
+ /**
+ * @OneToOne(targetEntity="Shipping")
+ * @JoinColumn(name="shipping_id", referencedColumnName="id")
+ */
+ private $shipping;
+
+
+The @JoinTable definition used for many-to-many mappings has similar defaults. As an example, consider this mapping:
+
+ [php]
+ class User {
+ //...
+ /** @ManyToMany(targetEntity="Group") */
+ private $groups;
+ //...
+ }
+
+This is essentially the same as the following, more verbose, mapping:
+
+ [php]
+ class User {
+ //...
+ /**
+ * @ManyToMany(targetEntity="Group")
+ * @JoinTable(name="User_Group",
+ * joinColumns={@JoinColumn(name="User_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="Group_id", referencedColumnName="id")}
+ * )
+ */
+ private $groups;
+ //...
+ }
+
+In that case, the name of the join table defaults to a combination of the simple, unqualified class names of the participating classes, separated by an underscore character. The names of the join columns default to the simple, unqualified class name of the targeted class followed by "_id". The referencedColumnName always defaults to "id", just as in one-to-one or many-to-one mappings.
+
+If you accept these defaults, you can reduce the mapping code to a minimum.
+
+++ One-To-One, Unidirectional
+
+A unidirectional one-to-one association is very common. Here is an example of a `Product` that has one `Shipping` object associated to it. The `Shipping` side does not reference back to the `Product` so it is unidirectional.
+
+ [php]
+ /** @Entity */
+ class Product
+ {
+ // ...
+
+ /**
+ * @OneToOne(targetEntity="Shipping")
+ * @JoinColumn(name="shipping_id", referencedColumnName="id")
+ */
+ private $shipping;
+
+ // ...
+ }
+
+ /** @Entity */
+ class Shipping
+ {
+ // ...
+ }
+
+Note that the @JoinColumn is not really necessary in this example, as the defaults would be the same.
+
+++ One-To-One, Bidirectional
+
+Here is a one-to-one relationship between a `Customer` and a `Cart`. The `Cart`
+has a reference back to the `Customer` so it is bidirectional.
+
+ [php]
+ /** @Entity */
+ class Customer
+ {
+ // ...
+
+ /**
+ * @OneToOne(targetEntity="Cart", mappedBy="customer")
+ */
+ private $cart;
+
+ // ...
+ }
+
+ /** @Entity */
+ class Cart
+ {
+ // ...
+
+ /**
+ * @OneToOne(targetEntity="Customer", inversedBy="cart")
+ * @JoinColumn(name="customer_id", referencedColumnName="id")
+ */
+ private $customer;
+
+ // ...
+ }
+
+Note that the @JoinColumn is not really necessary in this example, as the defaults would be the same.
+
+++ One-To-One, Self-referencing
+
+You can easily have self referencing one-to-one relationships like below.
+
+ [php]
+ /** @Entity */
+ class Customer
+ {
+ // ...
+
+ /**
+ * @OneToOne(targetEntity="Customer")
+ * @JoinColumn(name="mentor_id", referencedColumnName="id")
+ */
+ private $mentor;
+
+ // ...
+ }
+
+Note that the @JoinColumn is not really necessary in this example, as the defaults would be the same.
+
+++ One-To-Many, Unidirectional with Join Table
+
+A unidirectional one-to-many association can be mapped through a join table. From Doctrine's point of view, it is simply mapped as a unidirectional many-to-many whereby a unique constraint on one of the join columns enforces the one-to-many cardinality.
+The following example sets up such a unidirectional one-to-many association:
+
+ [php]
+ /** @Entity */
+ class User
+ {
+ // ...
+
+ /**
+ * @ManyToMany(targetEntity="Phonenumber")
+ * @JoinTable(name="users_phonenumbers",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="phonenumber_id", referencedColumnName="id", unique=true)}
+ * )
+ */
+ private $phonenumbers;
+
+ // ...
+ }
+
+ /** @Entity */
+ class Phonenumber
+ {
+ // ...
+ }
+
+> **NOTE**
+> One-To-Many uni-directional relations with join-table only work using the @ManyToMany annotation and a unique-constraint.
+
+++ One-To-Many, Bidirectional
+
+Bidirectional one-to-many associations are very common. The following code shows an example with a Product and a Feature class:
+
+ [php]
+ /** @Entity */
+ class Product
+ {
+ // ...
+ /**
+ * @OneToMany(targetEntity="Feature", mappedBy="product")
+ */
+ private $features;
+ // ...
+ }
+
+ /** @Entity */
+ class Feature
+ {
+ // ...
+ /**
+ * @ManyToOne(targetEntity="Product", inversedBy="features")
+ * @JoinColumn(name="product_id", referencedColumnName="id")
+ */
+ private $product;
+ // ...
+ }
+
+Note that the @JoinColumn is not really necessary in this example, as the defaults would be the same.
+
+++ One-To-Many, Self-referencing
+
+You can also setup a one-to-many association that is self-referencing. In this example we
+setup a hierarchy of `Category` objects by creating a self referencing relationship.
+This effectively models a hierarchy of categories and from the database perspective is known as an adjacency list approach.
+
+ [php]
+ /** @Entity */
+ class Category
+ {
+ // ...
+ /**
+ * @OneToMany(targetEntity="Category", mappedBy="parent")
+ */
+ private $children;
+
+ /**
+ * @ManyToOne(targetEntity="Category", inversedBy="children")
+ * @JoinColumn(name="parent_id", referencedColumnName="id")
+ */
+ private $parent;
+ // ...
+ }
+
+Note that the @JoinColumn is not really necessary in this example, as the defaults would be the same.
+
+++ Many-To-Many, Unidirectional
+
+Real many-to-many associations are less common. The following example shows a unidirectional association between User and Group entities:
+
+ [php]
+ /** @Entity */
+ class User
+ {
+ // ...
+
+ /**
+ * @ManyToMany(targetEntity="Group")
+ * @JoinTable(name="users_groups",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id")}
+ * )
+ */
+ private $groups;
+
+ // ...
+ }
+
+ /** @Entity */
+ class Group
+ {
+ // ...
+ }
+
+> **NOTE**
+> Why are many-to-many associations less common? Because frequently you want to associate
+> additional attributes with an association, in which case you introduce an association
+> class. Consequently, the direct many-to-many association disappears and is replaced
+> by one-to-many/many-to-one associations between the 3 participating classes.
+
+++ Many-To-Many, Bidirectional
+
+Here is a similar many-to-many relationship as above except this one is bidirectional.
+
+ [php]
+ /** @Entity */
+ class User
+ {
+ // ...
+
+ /**
+ * @ManyToMany(targetEntity="Group", inversedBy="users")
+ * @JoinTable(name="users_groups",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id")}
+ * )
+ */
+ private $groups;
+
+ // ...
+ }
+
+ /** @Entity */
+ class Group
+ {
+ // ...
+ /**
+ * @ManyToMany(targetEntity="User", mappedBy="groups")
+ */
+ private $users;
+ // ...
+ }
+
+++ Many-To-Many, Self-referencing
+
+You can even have a self-referencing many-to-many association. A common scenario is where a `User` has friends and the target entity of that relationship is a `User` so it is self referencing. In this example it is bidirectional so `User` has a field named `$friendsWithMe` and `$myFriends`.
+
+ [php]
+ /** @Entity */
+ class User
+ {
+ // ...
+
+ /**
+ * @ManyToMany(targetEntity="User", mappedBy="myFriends")
+ */
+ private $friendsWithMe;
+
+ /**
+ * @ManyToMany(targetEntity="User", inversedBy="friendsWithMe")
+ * @JoinTable(name="friends",
+ * joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
+ * inverseJoinColumns={@JoinColumn(name="friend_user_id", referencedColumnName="id")}
+ * )
+ */
+ private $myFriends;
+
+ // ...
+ }
+
+++ Ordering To-Many Collections
+
+In many use-cases you will want to sort collections when they are retrieved from the database.
+In userland you do this as long as you haven't initially saved an entity with its associations
+into the database. To retrieve a sorted collection from the database you can use the
+`@OrderBy` annotation with an collection that specifies an DQL snippet that is appended
+to all queries with this collection.
+
+Additional to any `@OneToMany` or `@ManyToMany` annotation you can specify the `@OrderBy`
+in the following way:
+
+ [php]
+ /** @Entity */
+ class User
+ {
+ // ...
+
+ /**
+ * @ManyToMany(targetEntity="Group")
+ * @OrderBy({"name" = "ASC"})
+ */
+ private $groups;
+ }
+
+The DQL Snippet in OrderBy is only allowed to consist of unqualified,
+unquoted field names and of an optional ASC/DESC positional statement.
+Multiple Fields are separated by a comma (,). The referenced field
+names have to exist on the `targetEntity` class of the `@ManyToMany` or
+`@OneToMany` annotation.
+
+The semantics of this feature can be described as follows.
+
+* `@OrderBy` acts as an implicit ORDER BY clause for the given fields, that is appended
+to all the explicitly given ORDER BY items.
+* All collections of the ordered type are always retrieved in an ordered fashion.
+* To keep the database impact low, these implicit ORDER BY items are only added
+to an DQL Query if the collection is fetch joined in the DQL query.
+
+Given our previously defined Example:
+
+ [sql]
+ -- Would not add ORDER BY, since g is not fetch joined
+ SELECT u FROM User u JOIN u.groups g WHERE SIZE(g) > 10
+
+ -- However
+ SELECT u FROM User u JOIN u.groups g WHERE u.id = 10
+ -- would internally be rewritten to
+ SELECT u FROM User u JOIN u.groups g WHERE u.id = 10 ORDER BY g.name ASC
+
+ -- You can't reverse the order, an explicit:
+ SELECT u FROM User u JOIN u.groups g WHERE u.id = 10 ORDER BY g.name DESC
+ -- is internally be rewritten to
+ SELECT u FROM User u JOIN u.groups g WHERE u.id = 10 ORDER BY g.name DESC, g.name ASC
diff --git a/manual/en/basic-mapping.txt b/manual/en/basic-mapping.txt
new file mode 100644
index 000000000..17910de81
--- /dev/null
+++ b/manual/en/basic-mapping.txt
@@ -0,0 +1,279 @@
+This chapter explains the basic mapping of objects and properties. Mapping of associations will be covered in the next chapter "Association Mapping".
+
+++ Mapping Drivers
+
+Doctrine provides several different ways for specifying object-relational mapping metadata:
+
+* Docblock Annotations
+* XML
+* YAML
+
+This manual usually uses docblock annotations in all the examples that are spread throughout all chapters. There are dedicated chapters for XML and YAML mapping, respectively.
+
+> **NOTE**
+> If you're wondering which mapping driver gives the best performance, the answer is:
+> None. Once the metadata of a class has been read from the source (annotations, xml or
+> yaml) it is stored in an instance of the `Doctrine\ORM\Mapping\ClassMetadata` class
+> and these instances are stored in the metadata cache. Therefore at the end of the day
+> all drivers perform equally well. If you're not using a metadata cache (not
+> recommended!) then the XML driver might have a slight edge in performance due to the
+> powerful native XML support in PHP.
+
+++ Introduction to Docblock Annotations
+
+You've probably used docblock annotations in some form already, most likely to provide documentation metadata for a tool like `PHPDocumentor` (@author, @link, ...). Docblock annotations are a tool to embed metadata inside the documentation section which can then be processed by some tool. Doctrine 2 generalizes the concept of docblock annotations so that they can be used for any kind of metadata and so that it is easy to define new docblock annotations. In order to allow more involved annotation values and to reduce the chances of clashes with other docblock annotations, the Doctrine 2 docblock annotations feature an alternative syntax that is heavily inspired by the Annotation syntax introduced in Java 5.
+
+The implementation of these enhanced docblock annotations is located in the `Doctrine\Common\Annotations` namespace and therefore part of the Common package. Doctrine 2 docblock annotations support namespaces and nested annotations among other things. The Doctrine 2 ORM defines its own set of docblock annotations for supplying object-relational mapping metadata.
+
+> **NOTE**
+> If you're not comfortable with the concept of docblock annotations, don't worry, as
+> mentioned earlier Doctrine 2 provides XML and YAML alternatives and you could easily
+> implement your own favourite mechanism for defining ORM metadata.
+
+++ Persistent classes
+
+In order to mark a class for object-relational persistence it needs to be designated as an entity. This can be done through the `@Entity` marker annotation.
+
+ [php]
+ /** @Entity */
+ class MyPersistentClass
+ {
+ //...
+ }
+
+By default, the entity will be persisted to a table with the same name as the class name. In order to change that, you can use the `@Table` annotation as follows:
+
+ [php]
+ /**
+ * @Entity
+ * @Table(name="my_persistent_class")
+ */
+ class MyPersistentClass
+ {
+ //...
+ }
+
+Now instances of MyPersistentClass will be persisted into a table named `my_persistent_class`.
+
+++ Doctrine Mapping Types
+
+A Doctrine Mapping Type defines the mapping between a PHP type and an SQL type. All Doctrine Mapping Types that ship with Doctrine are fully portable between different RDBMS. You can even write your own custom mapping types that might or might not be portable, which is explained later in this chapter.
+
+For example, the Doctrine Mapping Type `string` defines the mapping from a PHP string to an SQL VARCHAR (or VARCHAR2 etc. depending on the RDBMS brand). Here is a quick overview of the built-in mapping types:
+
+* `string`: Type that maps an SQL VARCHAR to a PHP string.
+* `integer`: Type that maps an SQL INT to a PHP integer.
+* `smallint`: Type that maps a database SMALLINT to a PHP integer.
+* `bigint`: Type that maps a database BIGINT to a PHP string.
+* `boolean`: Type that maps an SQL boolean to a PHP boolean.
+* `decimal`: Type that maps an SQL DECIMAL to a PHP double.
+* `date`: Type that maps an SQL DATETIME to a PHP DateTime object.
+* `time`: Type that maps an SQL TIME to a PHP DateTime object.
+* `datetime`: Type that maps an SQL DATETIME/TIMESTAMP to a PHP DateTime object.
+* `text`: Type that maps an SQL CLOB to a PHP string.
+
+> **NOTE**
+> Doctrine Mapping Types are NOT SQL types and NOT PHP types! They are mapping types
+> between 2 types.
+
+++ Property Mapping
+
+After a class has been marked as an entity it can specify mappings for its instance fields. Here we will only look at simple fields that hold scalar values like strings, numbers, etc. Associations to other objects are covered in the chapter "Association Mapping".
+
+To mark a property for relational persistence the `@Column` docblock annotation is used. This annotation usually requires at least 1 attribute to be set, the `type`. The `type` attribute specifies the Doctrine Mapping Type to use for the field. If the type is not specified, 'string' is used as the default mapping type since it is the most flexible.
+
+Example:
+
+ [php]
+ /** @Entity */
+ class MyPersistentClass
+ {
+ /** @Column(type="integer") */
+ private $id;
+ /** @Column(length=50) */
+ private $name; // type defaults to string
+ //...
+ }
+
+In that example we mapped the field `id` to the column `id` using the mapping type `integer` and the field `name` is mapped to the column `name` with the default mapping type `string`. As you can see, by default the column names are assumed to be the same as the field names. To specify a different name for the column, you can use the `name` attribute of the Column annotation as follows:
+
+ [php]
+ /** @Column(name="db_name") */
+ private $name;
+
+The Column annotation has some more attributes. Here is a complete list:
+
+* `type`: (optional, defaults to 'string') The mapping type to use for the column.
+* `name`: (optional, defaults to field name) The name of the column in the database.
+* `length`: (optional, default 255) The length of the column in the database. (Applies only if a string-valued column is used).
+* `unique`: (optional, default FALSE) Whether the column is a unique key.
+* `nullable`: (optional, default FALSE) Whether the database column is nullable.
+* `precision`: (optional, default 0) The precision for a decimal (exact numeric) column. (Applies only if a decimal column is used.)
+* `scale`: (optional, default 0) The scale for a decimal (exact numeric) column. (Applies only if a decimal column is used.)
+
+++ Custom Mapping Types
+
+Doctrine allows you to create new mapping types. This can come in handy when you're missing a specific mapping type
+or when you want to replace the existing implementation of a mapping type.
+
+In order to create a new mapping type you need to subclass `Doctrine\DBAL\Types\Type` and implement/override
+the methods as you wish. Here is an example skeleton of such a custom type class:
+
+ [php]
+ namespace My\Project\Types;
+
+ use Doctrine\DBAL\Types\Type;
+ use Doctrine\DBAL\Platforms\AbstractPlatform;
+
+ /**
+ * My custom datatype.
+ */
+ class MyType extends Type
+ {
+ public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
+ {
+ // return the SQL used to create your column type. To create a portable column type, use the $platform.
+ }
+
+ public function convertToPHPValue($value, AbstractPlatform $platform)
+ {
+ // This is executed when the value is read from the database. Make your conversions here, optionally using the $platform.
+ }
+
+ public function convertToDatabaseValue($value, AbstractPlatform $platform)
+ {
+ // This is executed when the value is written to the database. Make your conversions here, optionally using the $platform.
+ }
+ }
+
+Restrictions to keep in mind:
+
+* If the value of the field is *NULL* the method `convertToDatabaseValue()` is not called.
+* The `UnitOfWork` never passes values to the database convert method that did not change in the request.
+
+When you have implemented the type you still need to let Doctrine know about it. This can be achieved
+through the `Doctrine\DBAL\Configuration#setCustomTypes(array $types)` method.
+
+> **NOTE**
+> `Doctrine\ORM\Configuration` is a subclass of `Doctrine\DBAL\Configuration`, so the
+> methods are available on your ORM Configuration instance as well.
+
+Here is an example:
+
+ [php]
+ // in bootstrapping code
+
+ // ...
+
+ use Doctrine\DBAL\Types\Type;
+
+ // ...
+
+ // Register my type
+ Type::addType('mytype', 'My\Project\Types\MyType');
+
+As can be seen above, when registering the custom types in the configuration you specify a unique name
+for the mapping type and map that to the corresponding fully qualified class name. Now you can use your new type in your mapping like this:
+
+ [php]
+ class MyPersistentClass
+ {
+ /** @Column(type="mytype") */
+ private $field;
+ }
+
+++ Identifiers / Primary Keys
+
+Every entity class needs an identifier/primary key. You designate the field that serves as the identifier with the `@Id` marker annotation. Here is an example:
+
+ [php]
+ class MyPersistentClass
+ {
+ /** @Id @Column(type="integer") */
+ private $id;
+ //...
+ }
+
+Without doing anything else, the identifier is assumed to be manually assigned. That means your code would need to properly set the identifier property before passing a new entity to `EntityManager#persist($entity)`.
+
+A common alternative strategy is to use a generated value as the identifier. To do this, you use the `@GeneratedValue` annotation like this:
+
+ [php]
+ class MyPersistentClass
+ {
+ /**
+ * @Id @Column(type="integer")
+ * @GeneratedValue
+ */
+ private $id;
+ }
+
+This tells Doctrine to automatically generate a value for the identifier. How this value is generated is specified by the `strategy` attribute, which is optional and defaults to 'AUTO'. A value of `AUTO` tells Doctrine to use the generation strategy that is preferred by the currently used database platform. For MySql, for example, Doctrine would use the `IDENTITY` strategy which means a typical AUTO_INCREMENT column. For PostgreSql it would choose to use the `SEQUENCE` strategy which would result in using a database sequence.
+
++++ Id Generation Strategies
+
+The previous example showed how to use the default Id generation strategy without knowing the underlying database with the AUTO-detection strategy.
+It is also possible to specifiy the Id Generation strategy more explicitly, which allows to make use of some additional features.
+
+Here is the list of possible generation strategies:
+
+* `AUTO` (default): Tells Doctrine to pick the strategy that is preferred by the used database platform. This strategy provides full portability.
+* `NONE`: Tells Doctrine that you generated the entities primary key value in userland before `EntityManager#persist()` is called.
+* `SEQUENCE`: Tells Doctrine to use a database sequence for ID generation. This strategy does currently not provide full portability. Sequences are supported by Oracle and PostgreSql.
+* `IDENTITY`: Tells Doctrine to use special identity columns in the database that usually generate a value on insertion of a row (i.e. MySql AUTO_INCREMENT). This strategy does currently not provide full portability. IDENTITY is supported by MySql, Sqlite and MsSql.
+* `TABLE`: Tells Doctrine to use a separate table for ID generation. This strategy provides full portability. ***This strategy is not yet implemented!***
+
+++++ Sequence Generator
+
+The Sequence Generator can be used in conjunction with Oracle or Postgres Platforms and allows some additional configuration options besides
+specifiying the sequence's name:
+
+ [php]
+ class User {
+ /**
+ * @Id
+ * @GeneratedValue(strategy="SEQUENCE")
+ * @SequenceGenerator(name="tablename_seq", initialValue=1, allocationSize=100)
+ */
+ protected $id = null;
+ }
+
+The initial value specifies at which value the sequence should start.
+
+Allocation Size is a powerful feature to optimize INSERT performance of Doctrine. The allocation size specifies
+by how much values the sequence is incremented whenever the next value is retrieved. If this is larger than one
+Doctrine 2 can generate Id values for the allocationSizes amount of entities. In the above example with
+`allocationSize=100` Doctrine 2 would only need to access the sequence once to generate the identifiers for
+100 new entities.
+
+> **CAUTION**
+
+> Allocation Size is detected by SchemaTool and transformed into an "INCREMENT BY " clause
+> in the CREATE SEQUENCE statement. For a database schema created by you (and not SchemaTool) you have to
+> make sure that the allocationSize configuration option is never larger than the actual sequences INCREMENT BY value.
+
++++ Composite Keys
+
+Doctrine 2 allows to use composite primary keys. There are however some restrictions oposed to using a single identifier.
+The use of the `@GeneratedValue` annotation is only supported for simple (not composite) primary keys, which means
+you can only use composite keys if you generate the primary key values yourself before calling `EntityManager#persist()`
+on the entity.
+
+To designate a composite primary key / identifier, simply put the @Id marker annotation on all fields that make up the primary key.
+
+++ Quoting Reserved Words
+
+It may sometimes be necessary to quote a column or table name because it conflicts with a reserved word of the particular RDBMS in use. This is often referred to as "Identifier Quoting". To let Doctrine know that you would like a table or column name to be quoted in all SQL statements, enclose the table or column name in backticks. Here is an example:
+
+ [php]
+ /** @Column(name="`number`", type="integer") */
+ private $number;
+
+Doctrine will then quote this column name in all SQL statements according to the used database platform.
+
+> **CAUTION**
+> Identifier Quoting is not supported for join column names or discriminator column names.
+
+> **CAUTION**
+> Identifier Quoting is a feature that is mainly intended to support legacy database
+> schemas. The use of reserved words and identifier quoting is generally discouraged.
\ No newline at end of file
diff --git a/manual/en/batch-processing.txt b/manual/en/batch-processing.txt
new file mode 100644
index 000000000..b9c3619d1
--- /dev/null
+++ b/manual/en/batch-processing.txt
@@ -0,0 +1,122 @@
+This chapter shows you how to accomplish bulk inserts, updates and deletes with Doctrine in an efficient way. The main problem with bulk operations is usually not to run out of memory and this is especially what the strategies presented here provide help with.
+
+> **CAUTION**
+> An ORM tool is not primarily well-suited for mass inserts, updates or deletions.
+> Every RDBMS has its own, most effective way of dealing with such operations and if
+> the options outlined below are not sufficient for your purposes we recommend you
+> use the tools for your particular RDBMS for these bulk operations.
+
+++ Bulk Inserts
+
+Bulk inserts in Doctrine are best performed in batches, taking advantage of the transactional write-behind behavior of an `EntityManager`. The following code shows an example for inserting 10000 objects with a batch size of 20. You may need to experiment with the batch size to find the size that works best for you. Larger batch sizes mean more prepared statement reuse internally but also mean more work during `flush`.
+
+ [php]
+ $batchSize = 20;
+ for ($i = 1; $i <= 10000; ++$i) {
+ $user = new CmsUser;
+ $user->setStatus('user');
+ $user->setUsername('user' . $i);
+ $user->setName('Mr.Smith-' . $i);
+ $em->persist($user);
+ if (($i % $batchSize) == 0) {
+ $em->flush();
+ $em->clear(); // Detaches all objects from Doctrine!
+ }
+ }
+
+++ Bulk Updates
+
+There are 2 possibilities for bulk updates with Doctrine.
+
++++ DQL UPDATE
+
+The by far most efficient way for bulk updates is to use a DQL UPDATE query. Example:
+
+ [php]
+ $q = $em->createQuery('update MyProject\Model\Manager m set m.salary = m.salary * 0.9');
+ $numUpdated = $q->execute();
+
++++ Iterating results
+
+An alternative solution for bulk updates is to use the `Query#iterate()` facility to iterate over the query results step by step instead of loading the whole result into memory at once. The following example shows how to do this, combining the iteration with the batching strategy that was already used for bulk inserts:
+
+ [php]
+ $batchSize = 20;
+ $i = 0;
+ $q = $em->createQuery('select u from MyProject\Model\User u');
+ $iterableResult = $q->iterate();
+ foreach($iterableResult AS $row) {
+ $user = $row[0];
+ $user->increaseCredit();
+ $user->calculateNewBonuses();
+ if (($i % $batchSize) == 0) {
+ $em->flush(); // Executes all updates.
+ $em->clear(); // Detaches all objects from Doctrine!
+ }
+ ++$i;
+ }
+
+> **NOTE**
+> Iterating results is not possible with queries that fetch-join a collection-valued
+> association. The nature of such SQL result sets is not suitable for incremental
+> hydration.
+
+++ Bulk Deletes
+
+There are two possibilities for bulk deletes with Doctrine. You can either issue
+a single DQL DELETE query or you can iterate over results removing them one at a time.
+
++++ DQL DELETE
+
+The by far most efficient way for bulk deletes is to use a DQL DELETE query.
+
+Example:
+
+ [php]
+ $q = $em->createQuery('delete from MyProject\Model\Manager m where m.salary > 100000');
+ $numDeleted = $q->execute();
+
++++ Iterating results
+
+An alternative solution for bulk deletes is to use the `Query#iterate()` facility to iterate over the query results step by step instead of loading the whole result into memory at once. The following example shows how to do this:
+
+ [php]
+ $batchSize = 20;
+ $i = 0;
+ $q = $em->createQuery('select u from MyProject\Model\User u');
+ $iterableResult = $q->iterate();
+ while (($row = $iterableResult->next()) !== false) {
+ $em->remove($row[0]);
+ if (($i % $batchSize) == 0) {
+ $em->flush(); // Executes all deletions.
+ $em->clear(); // Detaches all objects from Doctrine!
+ }
+ ++$i;
+ }
+
+> **NOTE**
+> Iterating results is not possible with queries that fetch-join a collection-valued
+> association. The nature of such SQL result sets is not suitable for incremental
+> hydration.
+
+++ Iterating Large Results for Data-Processing
+
+You can use the `iterate()` method just to iterate over a large result and no UPDATE or DELETE
+intention. The `IterableResult` instance returned from `$query->iterate()` implements the
+Iterator interface so you can process a large result without memory problems using the
+following approach:
+
+ [php]
+ $q = $this->_em->createQuery('select u from MyProject\Model\User u');
+ $iterableResult = $q->iterate();
+ foreach ($iterableResult AS $row) {
+ // do stuff with the data in the row, $row[0] is always the object
+
+ // detach from Doctrine, so that it can be Garbage-Collected immediately
+ $this->_em->detach($row[0]);
+ }
+
+> **NOTE**
+> Iterating results is not possible with queries that fetch-join a collection-valued
+> association. The nature of such SQL result sets is not suitable for incremental
+> hydration.
\ No newline at end of file
diff --git a/manual/en/best-practices.txt b/manual/en/best-practices.txt
new file mode 100644
index 000000000..9c095a5ae
--- /dev/null
+++ b/manual/en/best-practices.txt
@@ -0,0 +1,77 @@
+
+> **NOTE**
+> The best practices mentioned here that affect database design generally refer to best
+> practices when working with Doctrine and do not necessarily reflect best practices for
+> database design in general.
+
+++ Don't use public properties on entities
+
+It is very important that you don't map public properties on entities, but only protected or private ones.
+The reason for this is simple, whenever you access a public property of a proxy object that hasn't been initialized
+yet the return value will be null. Doctrine cannot hook into this process and magically make the entity lazy load.
+
+This can create situations where it is very hard to debug the current failure. We therefore urge you to map only
+private and protected properties on entities and use getter methods or magic __get() to access them.
+
+++ Constrain relationships as much as possible
+
+It is important to constrain relationships as much as possible. This means:
+
+* Impose a traversal direction (avoid bidirectional associations if possible)
+* Eliminate nonessential associations
+
+This has several benefits:
+
+* Reduced coupling in your domain model
+* Simpler code in your domain model (no need to maintain bidirectionality properly)
+* Less work for Doctrine
+
+++ Avoid composite keys
+
+Even though Doctrine fully supports composite keys it is best not to use them if possible. Composite keys require additional work by Doctrine and thus have a higher probability of errors.
+
+++ Use events judiciously
+
+The event system of Doctrine is great and fast. Even though making heavy use of events, especially lifecycle events, can have a negative impact on the performance of your application. Thus you should use events judiciously.
+
+++ Use cascades judiciously
+
+Automatic cascades of the persist/remove/merge/etc. operations are very handy but should be used wisely. Do NOT simply add all cascades to all associations. Think about which cascades actually do make sense for you for a particular association, given the scenarios it is most likely used in.
+
+++ Don't use special characters
+
+Avoid using any non-ASCII characters in class, field, table or column names. Doctrine itself is not unicode-safe in many places and will not be until PHP itself is fully unicode-aware (PHP6).
+
+++ Don't use identifier quoting
+
+Identifier quoting is a workaround for using reserved words that often causes problems in edge cases. Do not use identifier quoting and avoid using reserved words as table or column names.
+
+++ Initialize collections in the constructor
+
+It is recommended best practice to initialize any business collections in entities in the constructor. Example:
+
+ [php]
+ namespace MyProject\Model;
+ use Doctrine\Common\Collections\ArrayCollection;
+
+ class User {
+ private $addresses;
+ private $articles;
+
+ public function __construct() {
+ $this->addresses = new ArrayCollection;
+ $this->articles = new ArrayCollection;
+ }
+ }
+
+++ Don't map foreign keys to fields in an entity
+
+Foreign keys have no meaning whatsoever in an object model. Foreign keys are how a relational database establishes relationships. Your object model establishes relationships through object references. Thus mapping foreign keys to object fields heavily leaks details of the relational model into the object model, something you really should not do.
+
+++ Use explicit transaction demarcation
+
+While Doctrine will automatically wrap all DML operations in a transaction on flush(), it is considered best practice to explicitly set the transaction boundaries yourself.
+Otherwise every single query is wrapped in a small transaction (Yes, SELECT queries, too) since you can not talk to your database outside of a transaction.
+While such short transactions for read-only (SELECT) queries generally dont have any noticable performance impact, it is still preferrable to use fewer, well-defined transactions
+that are established through explicit transaction boundaries.
+
diff --git a/manual/en/caching.txt b/manual/en/caching.txt
new file mode 100644
index 000000000..f3e5d202f
--- /dev/null
+++ b/manual/en/caching.txt
@@ -0,0 +1,350 @@
+Doctrine provides cache drivers in the `Common` package for some of the most
+popular caching implementations such as APC, Memcache and Xcache. We also provide
+an `ArrayCache` driver which stores the data in a PHP array. Obviously, the cache
+does not live between requests but this is useful for testing in a development
+environment.
+
+++ Cache Drivers
+
+The cache drivers follow a simple interface that is defined in `Doctrine\Common\Cache\Cache`.
+All the cache drivers extend a base class `Doctrine\Common\Cache\AbstractCache`
+which implements the before mentioned interface.
+
+The interface defines the following methods for you to publicly use.
+
+ * fetch($id) - Fetches an entry from the cache.
+ * contains($id) - Test if an entry exists in the cache.
+ * save($id, $data, $lifeTime = false) - Puts data into the cache.
+ * delete($id) - Deletes a cache entry.
+
+Each driver extends the `AbstractCache` class which defines a few abstract
+protected methods that each of the drivers must implement.
+
+ * _doFetch($id)
+ * _doContains($id)
+ * _doSave($id, $data, $lifeTime = false)
+ * _doDelete($id)
+
+The public methods `fetch()`, `contains()`, etc. utilize the above protected methods
+that are implemented by the drivers. The code is organized this way so that the
+protected methods in the drivers do the raw interaction with the cache implementation
+and the `AbstractCache` can build custom functionality on top of these methods.
+
++++ APC
+
+In order to use the APC cache driver you must have it compiled and enabled in
+your php.ini. You can read about APC [here](http://us2.php.net/apc) on the PHP
+website. It will give you a little background information about what it is and
+how you can use it as well as how to install it.
+
+Below is a simple example of how you could use the APC cache driver by itself.
+
+ [php]
+ $cacheDriver = new \Doctrine\Common\Cache\ApcCache();
+ $cacheDriver->save('cache_id', 'my_data');
+
++++ Memcache
+
+In order to use the Memcache cache driver you must have it compiled and enabled in
+your php.ini. You can read about Memcache [here](http://us2.php.net/memcache) on
+the PHP website. It will give you a little background information about what it is
+and how you can use it as well as how to install it.
+
+Below is a simple example of how you could use the Memcache cache driver by itself.
+
+ [php]
+ $memcache = new Memcache();
+ $memcache->connect('memcache_host', 11211);
+
+ $cacheDriver = new \Doctrine\Common\Cache\MemcacheCache();
+ $cacheDriver->setMemcache()
+ $cacheDriver->save('cache_id', 'my_data');
+
++++ Xcache
+
+In order to use the Xcache cache driver you must have it compiled and enabled in
+your php.ini. You can read about Xcache [here](http://xcache.lighttpd.net/). It
+will give you a little background information about what it is and how you can
+use it as well as how to install it.
+
+Below is a simple example of how you could use the Xcache cache driver by itself.
+
+ [php]
+ $cacheDriver = new \Doctrine\Common\Cache\XcacheCache();
+ $cacheDriver->save('cache_id', 'my_data');
+
+++ Using Cache Drivers
+
+In this section we'll describe how you can fully utilize the API of the cache
+drivers to save cache, check if some cache exists, fetch the cached data and
+delete the cached data. We'll use the `ArrayCache` implementation as our
+example here.
+
+ [php]
+ $cacheDriver = new \Doctrine\Common\Cache\ArrayCache();
+
++++ Saving
+
+To save some data to the cache driver it is as simple as using the `save()` method.
+
+ [php]
+ $cacheDriver->save('cache_id', 'my_data');
+
+The `save()` method accepts three arguments which are described below.
+
+ * `$id` - The cache id
+ * `$data` - The cache entry/data.
+ * `$lifeTime` - The lifetime. If != false, sets a specific lifetime for this cache entry (null => infinite lifeTime).
+
+You can save any type of data whether it be a string, array, object, etc.
+
+ [php]
+ $array = array(
+ 'key1' => 'value1',
+ 'key2' => 'value2'
+ );
+ $cacheDriver->save('my_array', $array);
+
++++ Checking
+
+Checking whether some cache exists is very simple, just use the `contains()` method.
+It accepts a single argument which is the ID of the cache entry.
+
+ [php]
+ if ($cacheDriver->contains('cache_id')) {
+ echo 'cache exists';
+ } else {
+ echo 'cache does not exist';
+ }
+
++++ Fetching
+
+Now if you want to retrieve some cache entry you can use the `fetch()` method. It
+also accepts a single argument just like `contains()` which is the ID of the cache entry.
+
+ [php]
+ $array = $cacheDriver->fetch('my_array');
+
++++ Deleting
+
+As you might guess, deleting is just as easy as saving, checking and fetching.
+We have a few ways to delete cache entries. You can delete by an individual ID,
+regular expression, prefix, suffix or you can delete all entries.
+
+++++ By Cache ID
+
+ [php]
+ $cacheDriver->delete('my_array');
+
+You can also pass wild cards to the `delete()` method and it will return an array
+of IDs that were matched and deleted.
+
+ [php]
+ $deleted = $cacheDriver->delete('users_*');
+
+++++ By Regular Expression
+
+If you need a little more control than wild cards you can use a PHP regular
+expression to delete cache entries.
+
+ [php]
+ $deleted = $cacheDriver->deleteByRegex('/users_.*/');
+
+++++ By Prefix
+
+Because regular expressions are kind of slow, if simply deleting by a prefix or
+suffix is sufficient, it is recommended that you do that instead of using a regular
+expression because it will be much faster if you have many cache entries.
+
+ [php]
+ $deleted = $cacheDriver->deleteByPrefix('users_');
+
+++++ By Suffix
+
+Just like we did above with the prefix you can do the same with a suffix.
+
+ [php]
+ $deleted = $cacheDriver->deleteBySuffix('_my_account');
+
+++++ All
+
+If you simply want to delete all cache entries you can do so with the `deleteAll()`
+method.
+
+ [php]
+ $deleted = $cacheDriver->deleteAll();
+
++++ Counting
+
+If you want to count how many entries are stored in the cache driver instance
+you can use the `count()` method.
+
+ [php]
+ echo $cacheDriver->count();
+
+> **NOTE**
+> In order to use `deleteByRegex()`, `deleteByPrefix()`, `deleteBySuffix()`,
+> `deleteAll()`, `count()` or `getIds()` you must enable an option for the cache
+> driver to manage your cache IDs internally. This is necessary because APC,
+> Memcache, etc. don't have any advanced functionality for fetching and deleting.
+> We add some functionality on top of the cache drivers to maintain an index of
+> all the IDs stored in the cache driver so that we can allow more granular deleting
+> operations.
+>
+> [php]
+> $cacheDriver->setManageCacheIds(true);
+
++++ Namespaces
+
+If you heavily use caching in your application and utilize it in multiple parts
+of your application, or use it in different applications on the same server you
+may have issues with cache naming collisions. This can be worked around by using
+namespaces. You can set the namespace a cache driver should use by using the
+`setNamespace()` method.
+
+ [php]
+ $cacheDriver->setNamespace('my_namespace_');
+
+++ Integrating with the ORM
+
+The Doctrine ORM package is tightly integrated with the cache drivers to allow
+you to improve performance of various aspects of Doctrine by just simply making
+some additional configurations and method calls.
+
++++ Query Cache
+
+It is highly recommended that in a production environment you cache the
+transformation of a DQL query to its SQL counterpart. It doesn't make sense to
+do this parsing multiple times as it doesn't change unless you alter the DQL
+query.
+
+This can be done by configuring the query cache implementation to use on your ORM
+configuration.
+
+ [php]
+ $config = new \Doctrine\ORM\Configuration();
+ $config->setQueryCacheImpl(new \Doctrine\Common\Cache\ApcCache());
+
++++ Result Cache
+
+The result cache can be used to cache the results of your queries so that we
+don't have to query the database or hydrate the data again after the first time.
+You just need to configure the result cache implementation.
+
+ [php]
+ $config->setResultCacheImpl(new \Doctrine\Common\Cache\ApcCache());
+
+Now when you're executing DQL queries you can configure them to use the result cache.
+
+ [php]
+ $query = $em->createQuery('select u from \Entities\User u');
+ $query->useResultCache(true);
+
+You can also configure an individual query to use a different result cache driver.
+
+ [php]
+ $query->setResultCacheDriver(new \Doctrine\Common\Cache\ApcCache());
+
+> **NOTE**
+> Setting the result cache driver on the query will automatically enable the
+> result cache for the query. If you want to disable it pass false to
+> `useResultCache()`.
+>
+> [php]
+> $query->useResultCache(false);
+
+If you want to set the time the cache has to live you can use the `setResultCacheLifetime()`
+method.
+
+ [php]
+ $query->setResultCacheLifetime(3600);
+
+The ID used to store the result set cache is a hash which is automatically generated
+for you if you don't set a custom ID yourself with the `setResultCacheId()` method.
+
+ [php]
+ $query->setResultCacheId('my_custom_id');
+
+You can also set the lifetime and cache ID by passing the values as the second
+and third argument to `useResultCache()`.
+
+ [php]
+ $query->useResultCache(true, 3600, 'my_custom_id');
+
++++ Metadata Cache
+
+Your class metadata can be parsed from a few different sources like YAML, XML,
+Annotations, etc. Instead of parsing this information on each request we should
+cache it using one of the cache drivers.
+
+Just like the query and result cache we need to configure it first.
+
+ [php]
+ $config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ApcCache());
+
+Now the metadata information will only be parsed once and stored in the cache
+driver.
+
+++ Clearing the Cache
+
+We've already shown you previously how you can use the API of the cache drivers
+to manually delete cache entries. For your convenience we offer a command line task
+for you to help you with clearing the query, result and metadata cache.
+
+From the Doctrine command line you can run the following command.
+
+ $ ./doctrine clear-cache
+
+Running this task with no arguments will clear all the cache for all the configured
+drivers. If you want to be more specific about what you clear you can use the
+following options.
+
+To clear the query cache use the `--query` option.
+
+ $ ./doctrine clear-cache --query
+
+To clear the metadata cache use the `--metadata` option.
+
+ $ ./doctrine clear-cache --metadata
+
+To clear the result cache use the `--result` option.
+
+ $ ./doctrine clear-cache --result
+
+When you use the `--result` option you can use some other options to be more
+specific about what queries result sets you want to clear.
+
+Just like the API of the cache drivers you can clear based on an ID, regular
+expression, prefix or suffix.
+
+ $ ./doctrine clear-cache --result --id=cache_id
+
+Or if you want to clear based on a regular expressions.
+
+ $ ./doctrine clear-cache --result --regex=users_.*
+
+Or with a prefix.
+
+ $ ./doctrine clear-cache --result --prefix=users_
+
+And finally with a suffix.
+
+ $ ./doctrine clear-cache --result --suffix=_my_account
+
+> **NOTE**
+> Using the `--id`, `--regex`, etc. options with the `--query` and `--metadata`
+> are not allowed as it is not necessary to be specific about what you clear.
+> You only ever need to completely clear the cache to remove stale entries.
+
+++ Cache Slams
+
+Something to be careful of when utilizing the cache drivers is cache slams. If
+you have a heavily trafficked website with some code that checks for the existence
+of a cache record and if it does not exist it generates the information and saves
+it to the cache. Now if 100 requests were issued all at the same time and each one
+sees the cache does not exist and they all try and insert the same cache entry
+it could lock up APC, Xcache, etc. and cause problems. Ways exist to work around
+this, like pre-populating your cache and not letting your users requests populate
+the cache.
+
+You can read more about cache slams [here](http://t3.dotgnu.info/blog/php/user-cache-timebomb).
\ No newline at end of file
diff --git a/manual/en/configuration.txt b/manual/en/configuration.txt
new file mode 100644
index 000000000..b9a144bb3
--- /dev/null
+++ b/manual/en/configuration.txt
@@ -0,0 +1,407 @@
+++ Bootstrapping
+
+Bootstrapping Doctrine is a relatively simple procedure that roughly exists of
+just 2 steps:
+
+* Making sure Doctrine class files can be loaded on demand.
+* Obtaining an EntityManager instance.
+
++++ Class loading
+
+Lets start with the class loading setup. We need to set up some class loaders
+(often called "autoloader") so that Doctrine class files are loaded on demand.
+The Doctrine\Common namespace contains a very fast and minimalistic class loader
+that can be used for Doctrine and any other libraries where the coding standards
+ensure that a class's location in the directory tree is reflected by its name
+and namespace and where there is a common root namespace.
+
+> **NOTE**
+> You are not forced to use the Doctrine class loader to load Doctrine
+> classes. Doctrine does not care how the classes are loaded, if you want to use a
+> different class loader or your own to load Doctrine classes, just do that.
+> Along the same lines, the class loader in the Doctrine\Common namespace is not
+> meant to be only used for Doctrine classes, too. It is a generic class loader that can
+> be used for any classes that follow some basic naming standards as described above.
+
+The following example shows the setup of a `ClassLoader`
+
+> **NOTE**
+> This assumes you've created some kind of script to test the following code in.
+> Something like a `test.php` file.
+
+ [php]
+ // test.php
+
+ require '/path/to/lib/Doctrine/Common/ClassLoader.php';
+ $classLoader = new \Doctrine\Common\ClassLoader('Doctrine', '/path/to/Doctrine2/lib);
+ $classLoader->register(); // register on SPL autoload stack
+
+For best class loading performance it is recommended that you keep your include_path short, ideally it should only contain the path to the PEAR libraries, and any other class libraries should be registered with their full base path.
+
++++ Obtaining an EntityManager
+
+Once you have prepared the class loading, you acquire an EntityManager instance
+with the following minimalist configuration:
+
+ [php]
+ use Doctrine\ORM\EntityManager,
+ Doctrine\ORM\Configuration;
+
+ // ...
+
+ $config = new Configuration;
+ $cache = new \Doctrine\Common\Cache\ApcCache;
+ $config->setMetadataCacheImpl($cache);
+ $config->setQueryCacheImpl($cache);
+ $config->setProxyDir('/path/to/myproject/lib/MyProject/Proxies');
+ $config->setProxyNamespace('MyProject\Proxies');
+ $connectionOptions = array(
+ 'driver' => 'pdo_sqlite',
+ 'path' => 'database.sqlite'
+ );
+
+ $em = EntityManager::create($connectionOptions, $config);
+
+> **CAUTION**
+> Do not use Doctrine without a metadata and query cache! Doctrine is highly
+> optimized for working with caches. The main parts in Doctrine that are optimized
+> for caching are the metadata mapping information with the metadata cache and the
+> DQL to SQL conversions with the query cache. These 2 caches require only an absolute
+> minimum of memory yet they heavily improve the runtime performance of Doctrine.
+> The recommended cache driver to use with Doctrine is [APC](http://www.php.net/apc).
+> APC provides you with an opcode-cache (which is highly recommended anyway) and
+> a very fast in-memory cache storage that you can use for the metadata and query
+> caches as seen in the previous code snippet.
+
+An EntityManager is your central access point to ORM functionality provided by Doctrine.
+
+++ Configuration Options
+
+The following sections describe all the configuration options available on a `Doctrine\ORM\Configuration` instance.
+
++++ Proxy Directory (***REQUIRED***)
+
+ [php]
+ $config->setProxyDir($dir);
+ $config->getProxyDir();
+
+Gets or sets the directory where Doctrine generates any proxy classes. For a detailed explanation on proxy classes and how they are used in Doctrine, refer to the "Proxy Objects" section further down.
+
++++ Proxy Namespace (***REQUIRED***)
+
+ [php]
+ $config->setProxyNamespace($namespace);
+ $config->getProxyNamespace();
+
+Gets or sets the namespace to use for generated proxy classes. For a detailed explanation on proxy classes and how they are used in Doctrine, refer to the "Proxy Objects" section further down.
+
++++ Metadata Driver (***REQUIRED***)
+
+ [php]
+ $config->setMetadataDriverImpl($driver);
+ $config->getMetadataDriverImpl();
+
+Gets or sets the metadata driver implementation that is used by Doctrine to acquire the object-relational metadata for your classes.
+
+There are currently 4 available implementations:
+
+ * `Doctrine\ORM\Mapping\Driver\AnnotationDriver`
+ * `Doctrine\ORM\Mapping\Driver\XmlDriver`
+ * `Doctrine\ORM\Mapping\Driver\YamlDriver`
+ * `Doctrine\ORM\Mapping\Driver\DriverChain`
+
+Throughout the most part of this manual the AnnotationDriver is used in the examples. For information on the usage of the XmlDriver or YamlDriver please refer to the dedicated chapters `XML Mapping` and `YAML Mapping`.
+
+The annotation driver is configured as the default metadata driver, using Annotations as Metadata source
+does not require you to set this option explicitly.
+
++++ Metadata Cache (***RECOMMENDED***)
+
+ [php]
+ $config->setMetadataCacheImpl($cache);
+ $config->getMetadataCacheImpl();
+
+Gets or sets the cache implementation to use for caching metadata information, that is, all the information you supply via annotations, xml or yaml, so that they do not need to be parsed and loaded from scratch on every single request which is a waste of resources.
+The cache implementation must implement the `Doctrine\Common\Cache\Cache` interface.
+
+Usage of a metadata cache is highly recommended.
+
+The recommended implementations are:
+
+ * `Doctrine\Common\Cache\ApcCache`
+ * `Doctrine\Common\Cache\MemcacheCache`
+ * `Doctrine\Common\Cache\XcacheCache`
+
++++ Query Cache (***RECOMMENDED***)
+
+ [php]
+ $config->setQueryCacheImpl($cache);
+ $config->getQueryCacheImpl();
+
+Gets or sets the cache implementation to use for caching DQL queries, that is, the result of a DQL parsing process that includes the final SQL as well as meta information about how to process the SQL result set of a query. Note that the query cache does not affect query results. You do not get stale data. This is a pure optimization cache without any negative side-effects (except some minimal memory usage in your cache).
+
+Usage of a query cache is highly recommended.
+
+The recommended implementations are:
+
+ * `Doctrine\Common\Cache\ApcCache`
+ * `Doctrine\Common\Cache\MemcacheCache`
+ * `Doctrine\Common\Cache\XcacheCache`
+
++++ SQL Logger (***Optional***)
+
+ [php]
+ $config->setSqlLogger($logger);
+ $config->getSqlLogger();
+
+Gets or sets the logger to use for logging all SQL statements executed by Doctrine. The logger class must implement the `Doctrine\DBAL\Logging\SqlLogger` interface. A simple default implementation that logs to the standard output using `echo` and `var_dump` can be found at `Doctrine\DBAL\Logging\EchoSqlLogger`.
+
++++ Auto-generating Proxy Classes (***OPTIONAL***)
+
+ [php]
+ $config->setAutoGenerateProxyClasses($bool);
+ $config->getAutoGenerateProxyClasses();
+
+Gets or sets whether proxy classes should be generated automatically at runtime by Doctrine. If set to `FALSE`, proxy classes must be generated manually through the doctrine command line task `generate-proxies`. The strongly recommended value for a production environment is `FALSE`.
+
+++ Connection Options
+
+The `$connectionOptions` passed as the first argument to `EntityManager::create()` has to be either an array
+or an instance of `Doctrine\DBAL\Connection`. If an array is passed it is directly passed along to the
+DBAL Factory `Doctrine\DBAL\DriverManager::getConnection()`. The DBAL configuration is explained
+in the [DBAL section](./../dbal).
+
+++ Change Tracking Policies
+
+Change tracking is the process of determining what has changed in managed
+entities since the last time they were synchronized with the database.
+
+Doctrine provides 3 different change tracking policies, each having its
+particular advantages and disadvantages. The change tracking policy can
+be defined on a per-class basis (or more precisely, per-hierarchy).
+
++++ Deferred Implicit
+
+The deferred implicit policy is the default change tracking policy and the most
+ convenient one. With this policy, Doctrine detects the changes by a
+ property-by-property comparison at commit time and also detects changes
+ to entities or new entities that are referenced by other managed entities
+ ("persistence by reachability"). Although the most convenient policy, it can
+ have negative effects on performance if you are dealing with large units of
+ work (see "Understanding the Unit of Work"). Since Doctrine can't know what
+ has changed, it needs to check all managed entities for changes every time you
+ invoke EntityManager#flush(), making this operation rather costly.
+
++++ Deferred Explicit
+
+The deferred explicit policy is similar to the deferred implicit policy in that
+it detects changes through a property-by-property comparison at commit time. The
+difference is that only entities are considered that have been explicitly marked
+for change detection through a call to EntityManager#persist(entity) or through
+a save cascade. All other entities are skipped. This policy therefore gives
+improved performance for larger units of work while sacrificing the behavior
+of "automatic dirty checking".
+
+Therefore, flush() operations are potentially cheaper with this policy. The
+negative aspect this has is that if you have a rather large application and
+you pass your objects through several layers for processing purposes and
+business tasks you may need to track yourself which entities have changed
+on the way so you can pass them to EntityManager#persist().
+
+This policy can be configured as follows:
+
+ /**
+ * @Entity
+ * @ChangeTrackingPolicy("DEFERRED_EXPLICIT")
+ */
+ class User
+ {
+ // ...
+ }
+
++++ Notify
+
+This policy is based on the assumption that the entities notify interested
+listeners of changes to their properties. For that purpose, a class that
+wants to use this policy needs to implement the NotifyPropertyChanged?
+interface from the Doctrine\Common namespace. As a guideline, such an
+implementation should look as follows:
+
+ [php]
+ use Doctrine\Common\NotifyPropertyChanged,
+ Doctrine\Common\PropertyChangedListener;
+
+ /**
+ * @Entity
+ * @ChangeTrackingPolicy("NOTIFY")
+ */
+ class MyEntity implements NotifyPropertyChanged
+ {
+ // ...
+
+ private $_listeners = array();
+
+ public function addPropertyChangedListener(PropertyChangedListener $listener)
+ {
+ $this->_listeners[] = $listener;
+ }
+
+ protected function _onPropertyChanged($propName, $oldValue, $newValue)
+ {
+ if ($this->_listeners) {
+ foreach ($this->_listeners as $listener) {
+ $listener->propertyChanged($this, $propName, $oldValue, $newValue);
+ }
+ }
+ }
+ }
+
+Then, in each property setter of this class or derived classes, you need to
+invoke `_onPropertyChanged` as follows to notify listeners:
+
+ [php]
+ data) {
+ $this->_onPropertyChanged('data', $this->data, $data);
+ $this->data = $data;
+ }
+ }
+ }
+
+The check whether the new value is different from the old one is not mandatory
+but recommended. That way you also have full control over when you consider a
+property changed.
+
+The negative point of this policy is obvious: You need implement an interface
+and write some plumbing code. But also note that we tried hard to keep this
+notification functionality abstract. Strictly speaking, it has nothing to do
+with the persistence layer and the Doctrine ORM or DBAL. You may find that
+property notification events come in handy in many other scenarios as well.
+As mentioned earlier, the `Doctrine\Common` namespace is not that evil and
+consists solely of very small classes and interfaces that have almost no
+external dependencies (none to the DBAL and none to the ORM) and that you
+can easily take with you should you want to swap out the persistence layer.
+This change tracking policy does not introduce a dependency on the Doctrine
+DBAL/ORM or the persistence layer.
+
+The positive point and main advantage of this policy is its effectiveness. It
+has the best performance characteristics of the 3 policies with larger units of
+work and a flush() operation is very cheap when nothing has changed.
+
+++ Partial Objects
+
+A partial object is an object whose state is not fully initialized after being
+reconstituted from the database and that is disconnected from the rest of its data. The following section will describe why partial objects are problematic and what the approach of Doctrine2 to this problem is.
+
+> **NOTE**
+> The partial object problem in general does not apply to methods or
+> queries where you do not retrieve the query result as objects. Examples are:
+> `Query#getArrayResult()`, `Query#getScalarResult()`, `Query#getSingleScalarResult()`,
+> etc.
+
++++ What is the problem?
+
+In short, partial objects are problematic because they are usually objects with
+broken invariants. As such, code that uses these partial objects tends to be
+very fragile and either needs to "know" which fields or methods can be safely
+accessed or add checks around every field access or method invocation. The same
+holds true for the internals, i.e. the method implementations, of such objects.
+You usually simply assume the state you need in the method is available, after
+all you properly constructed this object before you pushed it into the database,
+right? These blind assumptions can quickly lead to null reference errors when
+working with such partial objects.
+
+It gets worse with the scenario of an optional association (0..1 to 1). When
+the associated field is NULL, you dont know whether this object does not have
+an associated object or whether it was simply not loaded when the owning object
+was loaded from the database.
+
+These are reasons why many ORMs do not allow partial objects at all and instead
+you always have to load an object with all its fields (associations being proxied).
+One secure way to allow partial objects is if the programming language/platform
+allows the ORM tool to hook deeply into the object and instrument it in such a
+way that individual fields (not only associations) can be loaded lazily on first
+access. This is possible in Java, for example, through bytecode instrumentation.
+In PHP though this is not possible, so there is no way to have "secure" partial
+objects in an ORM with transparent persistence.
+
+Doctrine, by default, does not allow partial objects. That means, any query that only selects partial object data and wants to retrieve the result as objects
+(i.e. `Query#getResult()`) will raise an exception telling you that
+partial objects are dangerous. If you want to force a query to return you partial objects, possibly as a performance tweak, you can use the `Query#HINT_FORCE_PARTIAL_LOAD` query hint as follows:
+
+ [php]
+ $q = $em->createQuery("select u.id, u.name from MyApp\Domain\User u");
+ $q->setHint(Query::HINT_FORCE_PARTIAL_LOAD, true);
+
++++ When should I force partial objects?
+
+Mainly for optimization purposes, especially since the stateless nature of PHP
+applications means that any fields or objects that are loaded unnecessarily in
+a request are useless (though often minimal) overhead. Be careful of premature optimization. Only force partial objects if it proves to provide an improvement to a performance problem.
+
+++ Proxy Objects
+
+A proxy object is an object that is put in place or used instead of the "real" object. A proxy object can add behavior to the object being proxied without that object being aware of it. In Doctrine 2, proxy objects are used to realize several features but mainly for transparent lazy-loading.
+
+Proxy objects with their lazy-loading facilities help to keep the subset of objects that are already in memory connected to the rest of the objects. This is an essential property as without it there would always be fragile partial objects at the outer edges of your object graph.
+
+Doctrine 2 implements a variant of the proxy pattern where it generates classes that extend your entity classes and adds lazy-loading capabilities to them. Doctrine can then give you an instance of such a proxy class whenever you request an object of the class being proxied. This happens in two situations:
+
+**Reference Proxies**
+
+The method `EntityManager#getReference($entityName, $identifier)` lets you obtain a reference to an entity for which the identifier is known, without loading that entity from the database. This is useful, for example, as a performance enhancement, when you want to establish an association to an entity for which you have the identifier. You could simply do this:
+
+ [php]
+ // $em instanceof EntityManager, $cart instanceof MyProject\Model\Cart
+ // $itemId comes from somewhere, probably a request parameter
+ $item = $em->getReference('MyProject\Model\Item', $itemId);
+ $cart->addItem($item);
+
+Here, we added an Item to a Cart without loading the Item from the database. If you invoke any method on the Item instance, it would fully initialize its state transparently from the database. Here $item is actually an instance of the proxy class that was generated for the Item class but your code does not need to care. In fact it **should not care**. Proxy objects should be transparent to your code.
+
+**Association proxies**
+
+The second most important situation where Doctrine uses proxy objects is when querying for objects. Whenever you query for an object that has a single-valued association to another object that is configured LAZY, without joining that association in the same query, Doctrine puts proxy objects in place where normally the associated object would be.
+Just like other proxies it will transparently initialize itself on first access.
+
+> **NOTE**
+> Joining an association in a DQL or native query essentially means eager loading of that
+> association in that query. This will override the 'fetch' option specified in
+> the mapping for that association, but only for that query.
+
++++ Generating Proxy classes
+
+Proxy classes can either be generated manually through the Doctrine CLI or automatically by Doctrine. The configuration option that controls this behavior is:
+
+ [php]
+ $config->setAutoGenerateProxyClasses($bool);
+ $config->getAutoGenerateProxyClasses();
+
+The default value is `TRUE` for convenient development. However, this setting is not optimal for performance and therefore not recommended for a production environment.
+To eliminate the overhead of proxy class generation during runtime, set this configuration option to `FALSE`. When you do this in a development environment, note that you may get class/file not found errors if certain proxy classes are not available or failing lazy-loads if new methods were added to the entity class that are not yet in the proxy class. In such a case, simply use the Doctrine CLI to (re)generate the proxy classes like so:
+
+ doctrine orm:generate-proxies
+
+++ Multiple Metadata Sources
+
+When using different components using Doctrine 2 you may end up with them using two different metadata drivers,
+for example XML and YAML. You can use the DriverChain Metadata implementations to aggregate these drivers
+based on namespaces:
+
+ [php]
+ $chain = new DriverChain();
+ $chain->addDriver($xmlDriver, 'Doctrine\Tests\Models\Company');
+ $chain->addDriver($yamlDriver, 'Doctrine\Tests\ORM\Mapping');
+
+Based on the namespace of the entity the loading of entities is delegated to the appropriate driver. The chain
+semantics come from the fact that the driver loops through all namespaces and matches the entity class name
+against the namespace using a `strpos() === 0` call. This means you need to order the drivers correctly if
+sub-namespaces use different metadata driver implementations.
\ No newline at end of file
diff --git a/manual/en/dql-doctrine-query-language.txt b/manual/en/dql-doctrine-query-language.txt
new file mode 100755
index 000000000..87aa54a93
--- /dev/null
+++ b/manual/en/dql-doctrine-query-language.txt
@@ -0,0 +1,803 @@
+++ DQL Explained
+
+DQL stands for **D**octrine **Q**uery **L**anguage and is an Object Query Language derivate that is very similar to the **H**ibernate **Q**uery **L**anguage (HQL) or the **J**ava **P**ersistence **Q**uery **L**anguage (JPQL).
+
+In essence, DQL provides powerful querying capabilities over your object model. Imagine all your objects lying around in some storage (like an object database). When writing DQL queries, think about querying that storage to pick a certain subset of your objects.
+
+> **CAUTION**
+> A common mistake for beginners is to mistake DQL for being just some form of SQL
+> and therefore trying to use table names and column names or join arbitrary tables
+> together in a query. You need to think about DQL as a query language for your object
+> model, not for your relational schema.
+
+DQL is case in-sensitive, except for namespace, class and field names, which are case sensitive.
+
+
+++ Types of DQL queries
+
+DQL as a query language has SELECT, UPDATE and DELETE constructs that map to their corresponding
+SQL statement types. INSERT statements are not allowed in DQL, because entities and their relations
+have to be introduced into the persistence context through `EntityManager#persist()` to ensure
+consistency of your object model.
+
+DQL SELECT statements are a very powerful way of retrieving parts of your domain model that are
+not accessible via assocations. Additionally they allow to retrieve entities and their associations
+in one single sql select statement which can make a huge difference in performance in contrast
+to using several queries.
+
+DQL UPDATE and DELETE statements offer a way to execute bulk changes on the entities of your
+domain model. This is often necessary when you cannot load all the affected entities of a bulk
+update into memory.
+
+++ SELECT queries
+
++++ DQL SELECT clause
+
+The select clause of a DQL query specifies what appears in the query result. The composition of all the expressions in the select clause also influences the nature of the query result.
+
+Here is an example that selects all users with an age > 20:
+
+ [sql]
+ SELECT u FROM MyProject\Model\User u WHERE u.age > 20
+
+Lets examine the query:
+
+* `u` is a so called identification variable or alias that refers to the `MyProject\Model\User` class. By placing this alias in the SELECT clause we specify that we want all instances of the User class that are matched by this query appear in the query result.
+* The FROM keyword is always followed by a fully-qualified class name which in turn is followed by an identification variable or alias for that class name. This class designates a root of our query from which we can navigate further via joins (explained later) and path expressions.
+* The expression `u.age` in the WHERE clause is a path expression. Path expressions in DQL are easily identified by the use of the '.' operator that is used for constructing paths. The path expression `u.age` refers to the `age` field on the User class.
+
+The result of this query would be a list of User objects where all users are older than 20.
+
+The SELECT clause allows to specify both class identification variables that signal the hydration
+of a complete entity class or just fields of the entity using the syntax `u.name`.
+Combinations of both are also allowed and it is possible to wrap both fields and
+identification values into aggregation and DQL functions. Numerical fields can
+be part of computations using mathematical operatos. See the sub-section on [DQL Functions, Aggregates and Operations](#dqlfn)
+on more information.
+
++++ Joins
+
+A SELECT query can contain joins. There are 2 types of JOINs: "Regular" Joins and "Fetch" Joins.
+
+**Regular Joins**: Used to limit the results and/or compute aggregate values.
+
+**Fetch Joins**: In addition to the uses of regular joins: Used to fetch related entities and include them in the hydrated result of a query.
+
+There is no special DQL keyword that distinguishes a regular join from a fetch join. A join (be it an inner or outer join) becomes a "fetch join" as soon as fields of the joined entity appear in the SELECT part of the DQL query outside of an aggregate function. Otherwise its a "regular join".
+
+Example:
+
+Regular join of the address:
+
+ [sql]
+ SELECT u FROM User u JOIN u.address a WHERE a.city = 'Berlin'
+
+Fetch join of the address:
+
+ [sql]
+ SELECT u, a FROM User u JOIN u.address a WHERE a.city = 'Berlin'
+
+When Doctrine hydrates a query with fetch-join it returns the class in the FROM clause on the
+root level of the result array. In the previous example an array of User instances is returned
+and the address of each user is fetched and hydrated into the `User#address` variable. If you access
+the address Doctrine does not need to
+
+> **NOTE**
+> Doctrine allows you to walk all the assocations between all the objects in your domain model.
+> Objects that were not already loaded from the database are replaced with lazy load proxy instances.
+> Non-loaded Collections are also replaced by lazy-load instances that fetch all the contained objects upon
+> first access. However relying on the lazy-load mechanism leads to many small queries executed
+> against the database, which can significantly affect the performance of your application.
+> **Fetch Joins** are the solution to hydrate most or all of the entities that you
+> need in a single SELECT query.
+
++++ Named and Positional Parameters
+
+DQL supports both named and positional parameters, however in contrast to many SQL dialects
+positional parameters are specified with numbers, for example "?1", "?2" and so on.
+Named parameters are specified with ":name1", ":name2" and so on.
+
++++ DQL SELECT Examples
+
+This section contains a large set of DQL queries and some explainations of what is happening.
+The actual result also depends on the hydration mode.
+
+ [sql]
+ -- Hydrate all Users
+ SELECT u FROM MyProject\Model\User u
+
+ -- Retrieve the IDs of all CmsUsers
+ SELECT u.id FROM CmsUser u
+
+ -- Retrieve the IDs of all users that have written an article
+ SELECT DISTINCT a.user.id FROM CmsArticle a
+
+ -- Retrieve all articles and sort them by the name of the articles users instance
+ SELECT a FROM CmsArticle a ORDER BY a.user.name ASC
+
+ -- Retrieve the Username and Name of a CmsUser
+ SELECT u.username, u.name FROM CmsUser u
+
+ -- Retrieve a ForumUser and his single associated entity
+ SELECT u, a FROM ForumUser u JOIN u.avatar a
+
+ -- Retrieve a CmsUser and fetch join all the phonenumbers he has
+ SELECT u, p FROM CmsUser u JOIN u.phonenumbers p
+
+ -- Hydrate a result in Ascending or Descending Order
+ SELECT u FROM ForumUser u ORDER BY u.id ASC
+ SELECT u FROM ForumUser u ORDER BY u.id DESC
+
+ -- Using Aggregate Functions
+ SELECT COUNT(u.id) FROM CmsUser u GROUP BY u.id
+
+ -- With WHERE Clause and Positional Parameter
+ SELECT u FROM ForumUser u WHERE u.id = ?1
+
+ -- With WHERE Clause and Named Parameter
+ SELECT u FROM ForumUser u WHERE u.username = :name
+
+ -- With Nested Conditions in WHERE Clause
+ SELECT u from ForumUser u WHERE (u.username = :name OR u.username = :name2) AND u.id = :id
+
+ -- With COUNT DISTINCT
+ SELECT COUNT(DISTINCT u.name) FROM CmsUser
+
+ -- With Arithmetic Expression in WHERE clause
+ SELECT u FROM CmsUser u WHERE ((u.id + 5000) * u.id + 3) < 10000000
+
+ -- Using multiple classes fetched using a FROM clause (all returned on the root level of the result)
+ SELECT u, a FROM CmsUser u, CmsArticle a WHERE u.id = a.user.id
+
+ -- Using a LEFT JOIN to hydrate all user-ids and optionally associated article-ids
+ SELECT u.id, a.id FROM CmsUser u LEFT JOIN u.articles a
+
+ -- Restricting a JOIN clause by additional conditions
+ SELECT u FROM CmsUser u LEFT JOIN u.articles a WITH a.topic LIKE '%foo%'
+
+ -- Using several Fetch JOINs
+ SELECT u, a, p, c FROM CmsUser u
+ JOIN u.articles a
+ JOIN u.phonenumbers p
+ JOIN a.comments c
+
+ -- BETWEEN in WHERE clause
+ SELECT u.name FROM CmsUser u WHERE u.id BETWEEN ?1 AND ?2
+
+ -- DQL Functions in WHERE clause
+ SELECT u.name FROM CmsUser u WHERE TRIM(u.name) = 'someone'
+
+ -- IN() Expression
+ SELECT u.name FROM CmsUser u WHERE u.id IN(46)
+ SELECT u FROM CmsUser u WHERE u.id IN (1, 2)
+ SELECT u FROM CmsUser u WHERE u.id NOT IN (1)
+
+ -- CONCAT() DQL Function
+ SELECT u.id FROM CmsUser u WHERE CONCAT(u.name, 's') = ?1
+ SELECT CONCAT(u.id, u.name) FROM CmsUser u WHERE u.id = ?1
+
+ -- EXISTS in WHERE clause with correlated Subquery
+ SELECT u.id FROM CmsUser u
+ WHERE EXISTS (SELECT p.phonenumber FROM CmsPhonenumber p WHERE p.phonenumber = u.id)
+
+ -- Get all users who are members of $group.
+ SELECT u.id FROM CmsUser u WHERE :param MEMBER OF u.groups
+
+ -- Get all users that have more than 1 phonenumber
+ SELECT u FROM CmsUser u WHERE SIZE(u.phonenumbers) > 1
+
+ -- Get all users that have no phonenumber
+ SELECT u FROM CmsUser u WHERE u.phonenumbers IS EMPTY
+
++++ Using INDEX BY
+
+The INDEX BY construct is nothing that directly translates into SQL but that affects
+object and array hydration. After each FROM and JOIN clause you specify by which field
+this class should be indexed in the result. By default a result is incremented
+by numerical keys starting with 0. However with INDEX BY you can specifiy any
+other column to be the key of your result, it really only makes sense with primary
+or unique fields though:
+
+ [sql]
+ SELECT u.id, u.status, upper(u.name) nameUpper FROM User u INDEX BY u.id
+ JOIN u.phonenumbers p INDEX BY p.phonenumber
+
+Returns an array of the following kind, indexed by both user-id then phonenumber-id:
+
+ array
+ 0 =>
+ array
+ 1 =>
+ object(stdClass)[299]
+ public '__CLASS__' => string 'Doctrine\Tests\Models\CMS\CmsUser' (length=33)
+ public 'id' => int 1
+ ..
+ 'nameUpper' => string 'ROMANB' (length=6)
+ 1 =>
+ array
+ 2 =>
+ object(stdClass)[298]
+ public '__CLASS__' => string 'Doctrine\Tests\Models\CMS\CmsUser' (length=33)
+ public 'id' => int 2
+ ...
+ 'nameUpper' => string 'JWAGE' (length=5)
+
+++ UPDATE queries
+
+DQL not only allows to select your Entities using field names, you can also execute bulk updates on a set
+of entities using an DQL-UPDATE query. The Syntax of an UPDATE query works as expected, as the following
+example shows:
+
+ UPDATE MyProject\Model\User u SET u.password = 'new' WHERE u.id IN (1, 2, 3)
+
+References to related entities are only possible in the WHERE clause and using subselects.
+
+> **CAUTION**
+> DQL UPDATE statements are ported directly into a Database UPDATE statement and therefore bypass
+> any locking scheme and do not increment the version column. Entities that are already
+> loaded into the persistence context will *NOT* be synced with the updated database state. It
+> is recommended to call `EntityManager#clear()` and retrieve new instances of any affected entity.
+
+++ DELETE queries
+
+DELETE queries can also be specified using DQL and their syntax is as simple as the UPDATE syntax:
+
+ DELETE MyProject\Model\User u WHERE u.id = 4
+
+The same restrictions apply for the reference of related entities.
+
+> **CAUTION**
+> DQL DELETE statements are ported directly into a Database DELETE statement and therefore
+> bypass any checks for the version column if they are not explicitly added to the WHERE
+> clause of the query. Additionally Deletes of specifies entities are *NOT* cascaded
+> to related entities even if specified in the metadata.
+
+++ Functions, Operators, Aggregates
+
+
++++ DQL Functions
+
+The following functions are supported in SELECT, WHERE and HAVING clauses:
+
+* ABS(arithmetic_expression)
+* CONCAT(str1, str2)
+* CURRENT_DATE() - Return the current date
+* CURRENT_TIME() - Returns the current time
+* CURRENT_TIMESTAMP() - Returns a timestamp of the current date and time.
+* LENGTH(str) - Returns the length of the given string
+* LOCATE(needle, haystack [, offset]) - Locate the first occurance of the substring in the string.
+* LOWER(str) - returns the string lowercased.
+* MOD(a, b) - Return a MOD b.
+* SIZE(collection) - Return the number of elements in the specified collection
+* SQRT(q) - Return the squareroot of q.
+* SUBSTRING(str, start [, length]) - Return substring of given string.
+* TRIM([LEADING | TRAILING | BOTH] ['trchar' FROM] str) - Trim the string by the given trim char, defaults to whitespaces.
+* UPPER(str) - Return the upper-case of the given string.
+
++++ Arithmetic operators
+
+You can do math in DQL using numeric values, for example:
+
+ SELECT person.salary * 1.5 FROM CompanyPerson person WHERE person.salary < 100000
+
++++ Aggregate Functions
+
+The following aggregate functions are allowed in SELECT and GROUP BY clauses: AVG, COUNT, MIN, MAX, SUM
+
++++ Other Expressions
+
+DQL offers a wide-range of additional expressions that are known from SQL, here is a list of
+all the supported constructs:
+
+* `ALL/ANY/SOME` - Used in a WHERE clause followed by a subselect this works like the equivalent constructs in SQL.
+* `BETWEEN a AND b` and `NOT BETWEEN a AND b` can be used to match ranges of arithmetic values.
+* `IN (x1, x2, ...)` and `NOT IN (x1, x2, ..)` can be used to match a set of given values.
+* `LIKE ..` and `NOT LIKE ..` match parts of a string or text using % as a wildcard.
+* `IS NULL` and `IS NOT NULL` to check for null values
+* `EXISTS` and `NOT EXISTS` in combination with a subselect
+
++++ Adding your own functions to the DQL language
+
+By default DQL comes with functions that are part of a large basis of underlying databases. However you will most likely
+choose a database platform at the beginning of your project and most likely never change it. For this cases you can
+easily extend the DQL parser with own specialized platform functions.
+
+You can register custom DQL functions in your ORM Configuration:
+
+ [php]
+ $config = new \Doctrine\ORM\Configuration();
+ $config->addCustomStringFunction($name, $class);
+ $config->addCustomNumericFunction($name, $class);
+ $config->addCustomDatetimeFunction($name, $class);
+
+ $em = EntityManager::create($dbParams, $config);
+
+The functions have to return either a string, numeric or datetime value depending on the registered function type. As an example
+we will add a MySQL specific FLOOR() functionality. All the given classes have to implement the base class
+\Doctrine\ORM\Query\AST\Functions\FunctionNode:
+
+ [php]
+ namespace MyProject\Query\AST;
+
+ use \Doctrine\ORM\Query\AST\Functions\FunctionsNode;
+
+ class MysqlFloor extends FunctionNode
+ {
+ public $simpleArithmeticExpression;
+
+ public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
+ {
+ return 'FLOOR(' . $sqlWalker->walkSimpleArithmeticExpression(
+ $this->simpleArithmeticExpression
+ ) . ')';
+ }
+
+ public function parse(\Doctrine\ORM\Query\Parser $parser)
+ {
+ $lexer = $parser->getLexer();
+
+ $parser->match(Lexer::T_ABS);
+ $parser->match(Lexer::T_OPEN_PARENTHESIS);
+
+ $this->simpleArithmeticExpression = $parser->SimpleArithmeticExpression();
+
+ $parser->match(Lexer::T_CLOSE_PARENTHESIS);
+ }
+ }
+
+We will register the function by calling and can then use it:
+
+ [php]
+ \Doctrine\ORM\Query\Parser::registerNumericFunction('FLOOR', 'MyProject\Query\MysqlFloor');
+ $dql = "SELECT FLOOR(person.salary * 1.75) FROM CompanyPerson person";
+
+++ The Query class
+
+An instance of the `Doctrine\ORM\Query` class represents a DQL query. You create a Query instance be calling `EntityManager#createQuery($dql)`, passing the DQL query string. Alternatively you can create an empty `Query` instance and invoke `Query#setDql($dql)` afterwards. Here are some examples:
+
+ [php]
+ // $em instanceof EntityManager
+
+ // example1: passing a DQL string
+ $q = $em->createQuery('select u from MyProject\Model\User u');
+
+ // example2: usin setDql
+ $q = $em->createQuery();
+ $q->setDql('select u from MyProject\Model\User u');
+
+
++++ Query Result Formats
+
+The format in which the result of a DQL SELECT query is returned can be influenced by a so-called `hydration mode`. A hydration mode specifies a particular way in which an SQL result set is transformed. Each hydration mode has its own dedicated method on the Query class. Here they are:
+
+* `Query#getResult()`: Retrieves a collection of objects. The result is either a plain collection of objects (pure) or an array where the objects are nested in the result rows (mixed).
+* `Query#getSingleResult()`: Retrieves a single object. If the result contains more than one object, an exception is thrown. The pure/mixed distinction does not apply.
+* `Query#getArrayResult()`: Retrieves an array graph (a nested array) that is largely interchangeable with the object graph generated by `Query#getResultList()` for read-only purposes.
+
+> **NOTE**
+> An array graph can differ from the corresponding object graph in
+> certain scenarios due to the difference of the identity semantics between arrays and
+> objects.
+
+* `Query#getScalarResult()`: Retrieves a flat/rectangular result set of scalar values that can contain duplicate data. The pure/mixed distinction does not apply.
+* `Query#getSingleScalarResult()`: Retrieves a single scalar value from the result returned by the dbms. If the result contains more than a single scalar value, an exception is thrown. The pure/mixed distinction does not apply.
+
+Instead of using these methods, you can alternatively use the general-purpose method `Query#execute(array $params = array(), $hydrationMode = Query::HYDRATE_OBJECT)`. Using this method you can directly supply the hydration mode as the second parameter via one of the Query constants. In fact, the methods mentioned earlier are just convenient shortcuts for the execute method. For example, the method `Query#getResultList()` internally invokes execute, passing in `Query::HYDRATE_OBJECT` as the hydration mode.
+
+The use of the methods mentioned earlier is generally preferred as it leads to more concise code.
+
++++ Pure and Mixed Results
+
+The nature of a result returned by a DQL SELECT query retrieved through `Query#getResult()` or `Query#getArrayResult()` can be of 2 forms: **pure** and **mixed**. In the previous simple examples, you already saw a "pure" query result, with only objects. By default, the result type is **pure** but **as soon as scalar values, such as aggregate values or other scalar values that do not belong to an entity, appear in the SELECT part of the DQL query, the result becomes mixed**. A mixed result has a different structure than a pure result in order to accomodate for the scalar values.
+
+A pure result usually looks like this:
+
+ array
+ [0] => Object
+ [1] => Object
+ [2] => Object
+ ...
+
+A mixed result on the other hand has the following general structure:
+
+ array
+ array
+ [0] => Object
+ [1] => "some scalar string"
+ ['count'] => 42
+ // ... more scalar values, either indexed numerically or with a name
+ array
+ [0] => Object
+ [1] => "some scalar string"
+ ['count'] => 42
+ // ... more scalar values, either indexed numerically or with a name
+
+To better understand mixed results, consider the following DQL query:
+
+ [sql]
+ SELECT u, UPPER(u.name) nameUpper FROM MyProject\Model\User u
+
+This query makes use of the `UPPER` DQL function that returns a scalar value and because there is now a scalar value in the SELECT clause, we get a mixed result.
+
+Here is how the result could look like:
+
+ array
+ array
+ [0] => User (Object)
+ ['nameUpper'] => "Roman"
+ array
+ [0] => User (Object)
+ ['nameUpper'] => "Jonathan"
+ ...
+
+And here is how you would access it in PHP code:
+
+ [php]
+ foreach ($results as $row) {
+ echo "Name: " . $row[0]->getName();
+ echo "Name UPPER: " . $row['nameUpper'];
+ }
+
+You may have observed that in a mixed result, the object always ends up on index 0 of a result row.
+
++++ Hydration Mode Asumptions
+
+Each of the Hydration Modes makes assumptions about how the result is returned to userland. You should
+know about all the details to make best use of the different result formats:
+
+++++ Object Hydration
+
+++++ Array Hydration
+
+++++ Scalar Hydration Details
+
+The following assumptions are made about selected fields using Scalar Hydration:
+
+1. Fields from classes are prefixed by the DQL alias in the result. A query of the kind 'SELECT u.name ..' returns a key 'u_name' in the result rows.
+
++++ Iterating Large Resultsets
+
+There are situations when a query you want to execute returns a very large result-set that needs
+to be processed. All the previously described hydration modes completly load a result-set into
+memory which might not be feasible with large result sets. See the [Batch Processing](batch-processing)
+section on details how to iterate large result sets.
+
++++ Functions
+
+The following methods exist on the `AbstractQuery` which both `Query` and `NativeQuery` extend from.
+
+++++ Parameters
+
+Prepared Statements that use numerical or named wildcards require additional parameters to be executable
+agains the database. To pass parameters to the query the following methods can be used:
+
+* `AbstractQuery::setParameter($param, $value)` - Set the numerical or named wildcard to the given value.
+* `AbstractQuery::setParameters(array $params)` - Set an array of parameter key-value pairs.
+* `AbstractQuery::getParameter($param)`
+* `AbstractQuery::getParameters()`
+
+++++ Cache related API
+
+You can cache query results based either on all variables that define the result (SQL, Hydration Mode, Parameters and Hints)
+or on user-defined cache keys. However by default query results are not cached at all. You have to enable
+the result cache on a per query basis. The following example shows a complete workflow using the Result Cache
+API:
+
+ [php]
+ $query = $em->createQuery('SELECT u FROM MyProject\Model\User u WHERE u.id = ?1');
+ $query->setParameter(1, 12);
+
+ $query->setResultCacheDriver(new ApcCache());
+
+ $query->useResultCache(true)
+ ->setResultCacheLifeTime($seconds = 3600);
+
+ $result = $query->getResult(); // cache miss
+
+ $query->expireResultCache(true);
+ $result = $query->getResult(); // forced expire, cache miss
+
+ $query->setResultCacheId('my_query_result');
+ $result = $query->getResult(); // saved in given result cache id.
+
+ // or call useResultCache() with all parameters:
+ $query->useResultCache(true, $seconds = 3600, 'my_query_result');
+ $result = $query->getResult(); // cache hit!
+
+> **TIP!**
+> You can set the Result Cache Driver globally on the `Doctrine\ORM\Configuration` instance
+> so that it is passed to every `Query` and `NativeQuery` instance.
+
+++++ Query Hints
+
+You can pass hints to the query parser and hydrators by using the `AbstractQuery::setHint($name, $value)` method.
+Currently there exist mostly internal query hints that are not be consumed in userland. However the following few hints
+are to be used in userland:
+
+* Query::HINT_FORCE_PARTIAL_LOAD - Allows to hydrate objects although not all their columns are fetched. This query
+hint can be used to handle memory consumption problems with large result-sets that contain char or binary data.
+Doctrine has no way of implicitly reloaded this data. Partially loaded objects have to be passed to
+`EntityManager::refresh()` if they are to be reloaded fully from the database.
+* Query::HINT_REFRESH - This query is used internally by `EntityManager::refresh()` and can be used in userland aswell.
+If you specify this hint and a query returns the data for an entity that is already managed by the UnitOfWork, the
+fields of the existing entity will be refreshed. In normal operation a result-set that loads data of an already existing
+entity is discarded in favour of the already existing entity.
+* Query::HINT_CUSTOM_TREE_WALKERS - An array of additional `Doctrine\ORM\Query\TreeWalker` instances that are attached
+to the DQL query parsing process.
+
+++++ Query Cache (DQL Query Only)
+
+Parsing a DQL query and converting it into an SQL query against the underlying database platform obviously has some overhead
+in contrast to directly executing Native SQL queries. That is why there is a dedicated Query Cache for caching the
+DQL parser results. In combination with the use of wildcards you can reduce the number of parsed queries in production
+to zero.
+
+The Query Cache Driver is passed from the `Doctrine\ORM\Configuration` instance to each `Doctrine\ORM\Query` instance
+by default and is also enabled by default. This also means you don't regularly need to fiddle with the parameters
+of the Query Cache, however if you do there are several methods to interact with it:
+
+* `Query::setQueryCacheDriver($driver)` - Allows to set a Cache instance
+* `Query::setQueryCacheLifeTime($seconds = 3600)` - Set lifetime of the query caching.
+* `Query::expireQueryCache($bool)` - Enforce the expiring of the query cache if set to true.
+* `Query::getExpireQueryCache()`
+* `Query::getQueryCacheDriver()`
+* `Query::getQueryCacheLifeTime()`
+
+++++ First and Max Result Items (DQL Query Only)
+
+You can limit the number of results returned from a DQL query aswell as specify the starting offset, Doctrine
+then uses a strategy of manipulating the select query to return only the requested number of results:
+
+* `Query::setMaxResults($maxResults)`
+* `Query::setFirstResult($offset)`
+
+> **NOTE**
+> If your query contains a fetch-joined collection specifying the result limit methods are not working
+> as you would expect. Set Max Results restricts the number of database result rows, however in the
+> case of fetch-joined collections one root entity might appear in many rows, effectivly hydrating
+> less than the specified number of results.
+
+++ EBNF
+
+The following context-free grammar, written in an EBNF variant, describes the Doctrine Query Language. You can consult this grammar whenever you are unsure about what is possible with DQL or what the correct syntax for a particular query should be.
+
++++ Document syntax:
+
+* non-terminals begin with an upper case character
+* terminals begin with a lower case character
+* parentheses (...) are used for grouping
+* square brackets [...] are used for defining an optional part, eg. zero or one time
+* curly brackets {...} are used for repetion, eg. zero or more times
+* double quotation marks "..." define a terminal string a vertical bar | represents an alternative
+
++++ Terminals
+
+* identifier (name, email, ...)
+* string ('foo', 'bar''s house', '%ninja%', ...)
+* char ('/', '\\', ' ', ...)
+* integer (-1, 0, 1, 34, ...)
+* float (-0.23, 0.007, 1.245342E+8, ...)
+* boolean (false, true)
+
++++ Query Language
+
+ QueryLanguage ::= SelectStatement | UpdateStatement | DeleteStatement
+
++++ Statements
+
+ SelectStatement ::= SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]
+ UpdateStatement ::= UpdateClause [WhereClause]
+ DeleteStatement ::= DeleteClause [WhereClause]
+
++++ Identifiers
+
+ /* Alias Identification usage (the "u" of "u.name") */
+ IdentificationVariable ::= identifier
+
+ /* Alias Identification declaration (the "u" of "FROM User u") */
+ AliasIdentificationVariable :: = identifier
+
+ /* identifier that must be a class name (the "User" of "FROM User u") */
+ AbstractSchemaName ::= identifier
+
+ /* identifier that must be a field (the "name" of "u.name") */
+ /* This is responsable to know if the field exists in Object, no matter if it's a relation or a simple field */
+ FieldIdentificationVariable ::= identifier
+
+ /* identifier that must be a collection-valued association field (to-many) (the "Phonenumbers" of "u.Phonenumbers") */
+ CollectionValuedAssociationField ::= FieldIdentificationVariable
+
+ /* identifier that must be a single-valued association field (to-one) (the "Group" of "u.Group") */
+ SingleValuedAssociationField ::= FieldIdentificationVariable
+
+ /* identifier that must be an embedded class state field (for the future) */
+ EmbeddedClassStateField ::= FieldIdentificationVariable
+
+ /* identifier that must be a simple state field (name, email, ...) (the "name" of "u.name") */
+ /* The difference between this and FieldIdentificationVariable is only semantical, because it points to a single field (not mapping to a relation) */
+ SimpleStateField ::= FieldIdentificationVariable
+
+ /* Alias ResultVariable declaration (the "total" of "COUNT(*) AS total") */
+ AliasResultVariable = identifier
+
+ /* ResultVariable identifier usage of mapped field aliases (the "total" of "COUNT(*) AS total") */
+ ResultVariable = identifier
+
++++ Path Expressions
+
+ /* "u.Group" or "u.Phonenumbers" declarations */
+ JoinAssociationPathExpression ::= IdentificationVariable "." (CollectionValuedAssociationField | SingleValuedAssociationField)
+
+ /* "u.Group" or "u.Phonenumbers" usages */
+ AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression
+
+ /* "u.name" or "u.Group" */
+ SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression
+
+ /* "u.name" or "u.Group.name" */
+ StateFieldPathExpression ::= IdentificationVariable "." StateField | SingleValuedAssociationPathExpression "." StateField
+
+ /* "u.Group" */
+ SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField
+
+ /* "u.Group.Permissions" */
+ CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField
+
+ /* "name" */
+ StateField ::= {EmbeddedClassStateField "."}* SimpleStateField
+
+ /* "u.name" or "u.address.zip" (address = EmbeddedClassStateField) */
+ SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField
+
+
++++ Clauses
+
+ SelectClause ::= "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}*
+ SimpleSelectClause ::= "SELECT" ["DISTINCT"] SimpleSelectExpression
+ UpdateClause ::= "UPDATE" AbstractSchemaName ["AS"] AliasIdentificationVariable "SET" UpdateItem {"," UpdateItem}*
+ DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName ["AS"] AliasIdentificationVariable
+ FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}*
+ SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}*
+ WhereClause ::= "WHERE" ConditionalExpression
+ HavingClause ::= "HAVING" ConditionalExpression
+ GroupByClause ::= "GROUP" "BY" GroupByItem {"," GroupByItem}*
+ OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}*
+ Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]
+
+
++++ Items
+
+ UpdateItem ::= IdentificationVariable "." (StateField | SingleValuedAssociationField) "=" NewValue
+ OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]
+ GroupByItem ::= IdentificationVariable | SingleValuedPathExpression
+ NewValue ::= ScalarExpression | SimpleEntityExpression | "NULL"
+
+
++++ From, Join and Index by
+
+ IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}*
+ SubselectIdentificationVariableDeclaration ::= IdentificationVariableDeclaration | (AssociationPathExpression ["AS"] AliasIdentificationVariable)
+ JoinVariableDeclaration ::= Join [IndexBy]
+ RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable
+ Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+ ["AS"] AliasIdentificationVariable ["WITH" ConditionalExpression]
+ IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression
+
+
++++ Select Expressions
+
+ SelectExpression ::= IdentificationVariable | PartialObjectExpression | (AggregateExpression | "(" Subselect ")" | FunctionDeclaration | ScalarExpression) [["AS"] AliasResultVariable]
+ SimpleSelectExpression ::= ScalarExpression | IdentificationVariable |
+ (AggregateExpression [["AS"] AliasResultVariable])
+ PartialObjectExpression ::= "PARTIAL" IdentificationVariable "." PartialFieldSet
+ PartialFieldSet ::= "{" SimpleStateField {"," SimpleStateField}* "}"
+
+
++++ Conditional Expressions
+
+ ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}*
+ ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}*
+ ConditionalFactor ::= ["NOT"] ConditionalPrimary
+ ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"
+ SimpleConditionalExpression ::= ComparisonExpression | BetweenExpression | LikeExpression |
+ InExpression | NullComparisonExpression | ExistsExpression |
+ EmptyCollectionComparisonExpression | CollectionMemberExpression
+
+
++++ Collection Expressions
+
+ EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"
+ CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression
+
++++ Literal Values
+
+ Literal ::= string | char | integer | float | boolean
+ InParameter ::= Literal | InputParameter
+
++++ Input Parameter
+
+ InputParameter ::= PositionalParameter | NamedParameter
+ PositionalParameter ::= "?" integer
+ NamedParameter ::= ":" string
+
+
++++ Arithmetic Expressions
+
+ ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"
+ SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}*
+ ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}*
+ ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary
+ ArithmeticPrimary ::= SingleValuedPathExpression | Literal | "(" SimpleArithmeticExpression ")"
+ | FunctionsReturningNumerics | AggregateExpression | FunctionsReturningStrings
+ | FunctionsReturningDatetime | IdentificationVariable | InputParameter
+
+
++++ Scalar and Type Expressions
+
+ ScalarExpression ::= SimpleArithmeticExpression | StringPrimary | DateTimePrimary | StateFieldPathExpression
+ BooleanPrimary | CaseExpression | EntityTypeExpression
+ CaseExpression ::= GeneralCaseExpression | SimpleCaseExpression |
+ CoalesceExpression | NullifExpression
+ GeneralCaseExpression ::= "CASE" WhenClause {WhenClause}* "ELSE" ScalarExpression
+ "END"
+ WhenClause ::= "WHEN" ConditionalExpression "THEN" ScalarExpression
+ SimpleCaseExpression ::= "CASE" CaseOperand SimpleWhenClause {SimpleWhenClause}*
+ "ELSE" ScalarExpression "END"
+ CaseOperand ::= StateFieldPathExpression | TypeDiscriminator
+ SimpleWhenClause ::= "WHEN" ScalarExpression "THEN" ScalarExpression
+ CoalesceExpression ::= "COALESCE" "(" ScalarExpression {"," ScalarExpression}* ")"
+ NullifExpression ::= "NULLIF" "(" ScalarExpression "," ScalarExpression ")"
+ StringExpression ::= StringPrimary | "(" Subselect ")"
+ StringPrimary ::= StateFieldPathExpression | string | InputParameter | FunctionsReturningStrings | AggregateExpression
+ BooleanExpression ::= BooleanPrimary | "(" Subselect ")"
+ BooleanPrimary ::= StateFieldPathExpression | boolean | InputParameter
+ EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression
+ SimpleEntityExpression ::= IdentificationVariable | InputParameter
+ DatetimeExpression ::= DatetimePrimary | "(" Subselect ")"
+ DatetimePrimary ::= StateFieldPathExpression | InputParameter | FunctionsReturningDatetime | AggregateExpression
+
+
++++ Aggregate Expressions
+
+ AggregateExpression ::= ("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] StateFieldPathExpression ")" |
+ "COUNT" "(" ["DISTINCT"] (IdentificationVariable | SingleValuedPathExpression) ")"
+
++++ Other Expressions
+
+QUANTIFIED/BETWEEN/COMPARISON/LIKE/NULL/EXISTS
+
+ QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"
+ BetweenExpression ::= ArithmeticExpression ["NOT"] "BETWEEN" ArithmeticExpression "AND" ArithmeticExpression
+ ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression )
+ InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (InParameter {"," InParameter}* | Subselect) ")"
+ LikeExpression ::= StringExpression ["NOT"] "LIKE" string ["ESCAPE" char]
+ NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"
+ ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"
+ ComparisonOperator ::= "=" | "<" | "<=" | "<>" | ">" | ">=" | "!="
+
++++ Functions
+
+ FunctionDeclaration ::= FunctionsReturningStrings | FunctionsReturningNumerics | FunctionsReturningDateTime
+
+ FunctionsReturningNumerics ::=
+ "LENGTH" "(" StringPrimary ")" |
+ "LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")" |
+ "ABS" "(" SimpleArithmeticExpression ")" | "SQRT" "(" SimpleArithmeticExpression ")" |
+ "MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+ "SIZE" "(" CollectionValuedPathExpression ")"
+
+ FunctionsReturningDateTime ::= "CURRENT_DATE" | "CURRENT_TIME" | "CURRENT_TIMESTAMP"
+
+ FunctionsReturningStrings ::=
+ "CONCAT" "(" StringPrimary "," StringPrimary ")" |
+ "SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+ "TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")" |
+ "LOWER" "(" StringPrimary ")" |
+ "UPPER" "(" StringPrimary ")"
+
+
+
+
+
+
+
diff --git a/manual/en/events.txt b/manual/en/events.txt
new file mode 100644
index 000000000..f8f848563
--- /dev/null
+++ b/manual/en/events.txt
@@ -0,0 +1,304 @@
+Doctrine 2 features a lightweight event system that is part of the Common package.
+
+++ The Event System
+
+The event system is controlled by the `EventManager`. It is the central point
+of Doctrine's event listener system. Listeners are registered on the manager
+and events are dispatched through the manager.
+
+ [php]
+ $evm = new EventManager();
+
+Now we can add some event listeners to the `$evm`. Let's create a `EventTest` class
+to play around with.
+
+ [php]
+ class EventTest
+ {
+ const preFoo = 'preFoo';
+ const postFoo = 'postFoo';
+
+ private $_evm;
+
+ public $preFooInvoked = false;
+ public $postFooInvoked = false;
+
+ public function __construct($evm)
+ {
+ $evm->addEventListener(array(self::preFoo, self::postFoo), $this);
+ }
+
+ public function preFoo(EventArgs $e)
+ {
+ $this->preFooInvoked = true;
+ }
+
+ public function postFoo(EventArgs $e)
+ {
+ $this->postFooInvoked = true;
+ }
+ }
+
+ // Create a new instance
+ $test = new EventTest($evm);
+
+Events can be dispatched by using the `dispatchEvent()` method.
+
+ [php]
+ $evm->dispatchEvent(EventTest::preFoo);
+ $evm->dispatchEvent(EventTest::postFoo);
+
+You can easily remove a listener with the `removeEventListener()` method.
+
+ [php]
+ $evm->removeEventListener(array(self::preFoo, self::postFoo), $this);
+
+The Doctrine 2 event system also has a simple concept of event subscribers. We
+can define a simple `TestEventSubscriber` class which implements the
+`\Doctrine\Common\EventSubscriber` interface and implements a `getSubscribedEvents()`
+method which returns an array of events it should be subscribed to.
+
+ [php]
+ class TestEventSubscriber implements \Doctrine\Common\EventSubscriber
+ {
+ const preFoo = 'preFoo';
+
+ public $preFooInvoked = false;
+
+ public function preFoo()
+ {
+ $this->preFooInvoked = true;
+ }
+
+ public function getSubscribedEvents()
+ {
+ return array(self::preFoo);
+ }
+ }
+
+ $eventSubscriber = new TestEventSubscriber();
+ $evm->addEventSubscriber($eventSubscriber);
+
+Now when you dispatch an event any event subscribers will be notified for that event.
+
+ [php]
+ $evm->dispatchEvent(TestEventSubscriber::preFoo);
+
+Now the test the `$eventSubscriber` instance to see if the `preFoo()` method was invoked.
+
+ [php]
+ if ($eventSubscriber->preFooInvoked) {
+ echo 'pre foo invoked!';
+ }
+
+++ Lifecycle Events
+
+The EntityManager and UnitOfWork trigger a bunch of events during the life-time of their registered entities.
+
+* preRemove - The preRemove event occurs for a given entity before the respective EntityManager remove operation for that entity is executed.
+* postRemove - The postRemove event occurs for an entity after the entity has been deleted. It will be invoked after the database delete operations.
+* prePersist - The prePersist event occurs for a given entity before the respective EntityManager persist operation for that entity is executed.
+* postPersist - The postPersist event occurs for an entity after the entity has been made persistent. It will be invoked after the database insert operations. Generated primary key values are available in the postPersist event.
+* preUpdate - The preUpdate event occurs before the database update operations to entity data.
+* postUpdate - The postUpdate event occurs after the database update operations to entity data.
+* postLoad - The postLoad event occurs for an entity after the entity has been loaded into the current EntityManager from the database or after the refresh operation has been applied to it.
+* loadClassMetadata - The loadClassMetadata event occurs after the mapping metadata for a class has been loaded from a mapping source (annotations/xml/yaml).
+* onFlush - The onFlush event occours after the change-sets of all managed entities are computed. This event is not a lifecycle callback.
+
+> **NOTE**
+> Note that the postLoad event occurs for an entity before any associations have been
+> initialized. Therefore it is not safe to access associations in a postLoad callback
+> or event handler.
+
+You can access the Event constants from the `Events` class in the ORM package.
+
+ [php]
+ use Doctrine\ORM\Events;
+ echo Events::preUpdate;
+
+These can be hooked into by two different types of event listeners:
+
+* Lifecycle Callbacks are methods on the entity classes that are called when the event is triggered. They recieve absolutely no arguments and are specifically designed to allow changes inside the entity classes state.
+* Lifecycle Event Listeners are classes with specific callback methods that recieves some kind of `EventArgs` instance which give access to the entity, EntityManager or other relevant data.
+
+> **NOTE**
+> All Lifecycle events that happen during the `flush()` of an EntityManager have very specific constraints on the allowed
+> operations that can be executed. Please read the *Implementing Event Listeners* section very carefully to understand
+> which operations are allowed in which lifecycle event.
+
+++ Lifecycle Callbacks
+
+A lifecycle event is a regular event with the additional feature of providing
+a mechanism to register direct callbacks inside the corresponding entity classes
+that are executed when the lifecycle event occurs.
+
+ [php]
+
+ /** @Entity @HasLifecycleCallbacks */
+ class User
+ {
+ // ...
+
+ /**
+ * @Column(type="string", length=255)
+ */
+ public $value;
+
+ /** @Column(name="created_at", type="string", length=255) */
+ private $createdAt;
+
+ /** @PrePersist */
+ public function doStuffOnPrePersist()
+ {
+ $this->createdAt = date('Y-m-d H:m:s');
+ }
+
+ /** @PrePersist */
+ public function doOtherStuffOnPrePersist()
+ {
+ $this->value = 'changed from prePersist callback!';
+ }
+
+ /** @PostPersist */
+ public function doStuffOnPostPersist()
+ {
+ $this->value = 'changed from postPersist callback!';
+ }
+
+ /** @PostLoad */
+ public function doStuffOnPostLoad()
+ {
+ $this->value = 'changed from postLoad callback!';
+ }
+
+ /** @PreUpdate */
+ public function doStuffOnPreUpdate()
+ {
+ $this->value = 'changed from preUpdate callback!';
+ }
+ }
+
+Note that when using annotations you have to apply the @HasLifecycleCallbacks marker annotation on the entity class.
+
+If you want to register lifecycle callbacks from YAML or XML you can do it with
+the following.
+
+ [yml]
+ User:
+ type: entity
+ fields:
+ # ...
+ name:
+ type: string(50)
+ lifecycleCallbacks:
+ doStuffOnPrePersist: prePersist
+ doStuffOnPostPersist: postPersist
+
+XML would look something like this:
+
+ [xml]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+You just need to make sure a public `doStuffOnPrePersist()` and `doStuffOnPostPersist()` method is defined on your `User` model.
+
+ [php]
+ // ...
+
+ class User
+ {
+ // ...
+
+ public function doStuffOnPrePersist()
+ {
+ // ...
+ }
+
+ public function doStuffOnPostPersist()
+ {
+ // ...
+ }
+ }
+
+The `key` of the lifecycleCallbacks is the name of the method and the value is
+the event type. The allowed event types are the ones listed in the previous Lifecycle Events section.
+
+++ Listening to Lifecycle Events
+
+Lifecycle event listeners are much more powerful than the simple lifecycle callbacks that are defined on the entity
+classes. They allow to implement re-usable behaviours between different entity classes, yet require much more detailed
+knowledge about the inner workings of the EntityManager and UnitOfWork. Please read the *Implementing Event Listeners*
+section carefully if you are trying to write your own listener.
+
+To register an event listener you have to hook it into the EventManager that is passed to the EntityManager factory:
+
+ [php]
+ $eventManager = new EventManager();
+ $eventManager->addEventListener(array(Events::preUpdate), MyEventListener());
+ $eventManager->addEventSubscriber(new MyEventSubscriber());
+
+ $entityManager = EntityManager::create($dbOpts, $config, $eventManager);
+
+You can also retrieve the event manager instance after the EntityManager was created:
+
+ [php]
+ $entityManager->getEventManager()->addEventListener(array(Events::preUpdate), MyEventListener());
+ $entityManager->getEventManager()->addEventSubscriber(new MyEventSubscriber());
+
+++ Implementing Event Listeners
+
+This section explains what is and what is not allowed during specific lifecycle events of the UnitOfWork.
+Although you get passed the EntityManager in all of these events, you have to follow this restrictions very
+carefully since operations in the wrong event may produce lots of different errors, such as inconsistent data and
+lost updates/persists/removes.
+
++++ prePersist
+
++++ preRemove
+
++++ onFlush
+
++++ preUpdate
+
++++ postUpdate, postRemove, postPersist
+
+++ Load ClassMetadata Event
+
+When the mapping information for an entity is read, it is populated in to a
+`ClassMetadataInfo` instance. You can hook in to this process and manipulate
+the instance.
+
+ [php]
+ $test = new EventTest();
+ $metadataFactory = $em->getMetadataFactory();
+ $evm = $em->getEventManager();
+ $evm->addEventListener(Events::loadClassMetadata, $test);
+
+ class EventTest
+ {
+ public function loadClassMetadata(\Doctrine\ORM\Event\LoadClassMetadataEventArgs $eventArgs)
+ {
+ $classMetadata = $eventArgs->getClassMetadata();
+ $fieldMapping = array(
+ 'fieldName' => 'about',
+ 'type' => 'string',
+ 'length' => 255
+ );
+ $classMetadata->mapField($fieldMapping);
+ }
+ }
diff --git a/manual/en/improving-performance.txt b/manual/en/improving-performance.txt
new file mode 100644
index 000000000..644636fc9
--- /dev/null
+++ b/manual/en/improving-performance.txt
@@ -0,0 +1,25 @@
+
+++ Bytecode Cache
+
+It is highly recommended to make use of a bytecode cache like APC. A bytecode cache removes the need for parsing PHP code on every request and can greatly improve performance.
+
+> **NOTE**
+> "If you care about performance and don’t use a bytecode cache then you don’t really care
+> about performance. Please get one and start using it." (Stas Malyshev, Core Contributor
+> to PHP and Zend Employee).
+
+
+++ Metadata and Query caches
+
+As already mentioned earlier in the chapter about configuring Doctrine, it is strongly discouraged to use Doctrine without a Metadata and Query cache (preferrably with APC or Memcache as the cache driver). Operating Doctrine without these caches means Doctrine will need to load your mapping information on every single request and has to parse each DQL query on every single request. This is a waste of resources.
+
+++ Alternative Query Result Formats
+
+Make effective use of the available alternative query result formats like nested array graphs or pure scalar results, especially in scenarios where data is loaded for read-only purposes.
+
+++ Apply Best Practices
+
+A lot of the points mentioned in the Best Practices chapter will also positively affect the performance of Doctrine.
+
+
+
diff --git a/manual/en/inheritance-mapping.txt b/manual/en/inheritance-mapping.txt
new file mode 100644
index 000000000..1b82b1d2a
--- /dev/null
+++ b/manual/en/inheritance-mapping.txt
@@ -0,0 +1,141 @@
+++ Mapped Superclasses
+
+An mapped superclass is an abstract or concrete class that provides persistent entity state and mapping information
+for its subclasses, but which is not itself an entity. Typically, the purpose of such a mapped superclass is to define
+state and mapping information that is common to multiple entity classes.
+
+Mapped superclasses, just as regular, non-mapped classes, can appear in the middle of an otherwise
+mapped inheritance hierarchy (through Single Table Inheritance or Class Table Inheritance).
+
+> *NOTICE*
+>
+> A mapped superclass cannot be an entity, it is not queryable and persistent relationships defined by a mapped
+> superclass must be unidirectional. For further support of inheritance, the single or joined table inheritance
+> features have to be used.
+
+Example:
+
+ [php]
+ /** @MappedSuperclass */
+ class MappedSuperclassBase
+ {
+ /** @Column(type="integer") */
+ private $mapped1;
+ /** @Column(type="string") */
+ private $mapped2;
+ /**
+ * @OneToOne(targetEntity="MappedSuperclassRelated1")
+ * @JoinColumn(name="related1_id", referencedColumnName="id")
+ */
+ private $mappedRelated1;
+
+ // ... more fields and methods
+ }
+
+ /** @Entity */
+ class EntitySubClass extends MappedSuperclassBase
+ {
+ /** @Id @Column(type="integer") */
+ private $id;
+ /** @Column(type="string") */
+ private $name;
+
+ // ... more fields and methods
+ }
+
+The DDL for the corresponding database schema would look something like this (this is for SQLite):
+
+ [sql]
+ CREATE TABLE EntitySubClass (mapped1 INTEGER NOT NULL, mapped2 TEXT NOT NULL, id INTEGER NOT NULL, name TEXT NOT NULL, related1_id INTEGER DEFAULT NULL, PRIMARY KEY(id))
+
+As you can see from this DDL snippet, there is only a single table for the entity subclass. All the mappings from the mapped superclass were inherited to the subclass as if they had been defined on that class directly.
+
+
+++ Single Table Inheritance
+
+[Single Table Inheritance](http://martinfowler.com/eaaCatalog/singleTableInheritance.html) is an inheritance mapping strategy where all classes of a hierarchy are mapped to a single database table. In order to distinguish which row represents which type in the hierarchy a so-called discriminator column is used.
+
+Example:
+
+ [php]
+ namespace MyProject\Model;
+
+ /**
+ * @Entity
+ * @InheritanceType("SINGLE_TABLE")
+ * @DiscriminatorColumn(name="discr", type="string")
+ * @DiscriminatorMap({"person" = "Person", "employee" = "Employee"})
+ */
+ class Person
+ {
+ // ...
+ }
+
+ /**
+ * @Entity
+ */
+ class Employee extends Person
+ {
+ // ...
+ }
+
+Things to note:
+
+* The @InheritanceType, @DiscriminatorColumn and @DiscriminatorMap must be specified on the topmost class that is part of the mapped entity hierarchy.
+* The @DiscriminatorMap specifies which values of the discriminator column identify a row as being of a certain type. In the case above a value of "person" identifies a row as being of type `Person` and "employee" identifies a row as being of type `Employee`.
+* The names of the classes in the discriminator map do not need to be fully qualified if the classes are contained in the same namespace as the entity class on which the discriminator map is applied.
+
++++ Design-time considerations
+
+This mapping approach works well when the type hierarchy is fairly simple and stable. Adding a new type to the hierarchy and adding fields to existing supertypes simply involves adding new columns to the table, though in large deployments this may have an adverse impact on the index and column layout inside the database.
+
++++ Performance impact
+
+This strategy is very efficient for querying across all types in the hierarchy or for specific types. No table joins are required, only a WHERE clause listing the type identifiers. In particular, relationships involving types that employ this mapping strategy are very performant.
+
+
+++ Class Table Inheritance
+
+[Class Table Inheritance](http://martinfowler.com/eaaCatalog/classTableInheritance.html) is an inheritance mapping strategy where each class in a hierarchy is mapped to several tables: its own table and the tables of all parent classes. The table of a child class is linked to the table of a parent class through a foreign key constraint.
+Doctrine 2 implements this strategy through the use of a discriminator column in the topmost table of the hieararchy because this is the easiest way to achieve polymorphic queries with Class Table Inheritance.
+
+Example:
+
+ [php]
+ namespace MyProject\Model;
+
+ /**
+ * @Entity
+ * @InheritanceType("JOINED")
+ * @DiscriminatorColumn(name="discr", type="string")
+ * @DiscriminatorMap({"person" = "Person", "employee" = "Employee"})
+ */
+ class Person
+ {
+ // ...
+ }
+
+ /** @Entity */
+ class Employee extends Person
+ {
+ // ...
+ }
+
+Things to note:
+
+* The @InheritanceType, @DiscriminatorColumn and @DiscriminatorMap must be specified on the topmost class that is part of the mapped entity hierarchy.
+* The @DiscriminatorMap specifies which values of the discriminator column identify a row as being of which type. In the case above a value of "person" identifies a row as being of type `Person` and "employee" identifies a row as being of type `Employee`.
+* The names of the classes in the discriminator map do not need to be fully qualified if the classes are contained in the same namespace as the entity class on which the discriminator map is applied.
+
+> **NOTE**
+> When you do not use the SchemaTool to generate the required SQL you should know that deleting a class table inheritance
+> makes use of the foreign key property `ON DELETE CASCADE` in all database implementations. A failure to implement this
+> yourself will lead to dead rows in the database.
+
++++ Design-time considerations
+
+Introducing a new type to the hierarchy, at any level, simply involves interjecting a new table into the schema. Subtypes of that type will automatically join with that new type at runtime. Similarly, modifying any entity type in the hierarchy by adding, modifying or removing fields affects only the immediate table mapped to that type. This mapping strategy provides the greatest flexibility at design time, since changes to any type are always limited to that type's dedicated table.
+
++++ Performance impact
+
+This strategy inherently requires multiple JOIN operations to perform just about any query which can have a negative impact on performance, especially with large tables and/or large hierarchies. When partial objects are allowed, either globally or on the specific query, then querying for any type will not cause the tables of subtypes to be OUTER JOINed which can increase performance but the resulting partial objects will not fully load themselves on access of any subtype fields, so accessing fields of subtypes after such a query is not safe.
\ No newline at end of file
diff --git a/manual/en/introduction.txt b/manual/en/introduction.txt
new file mode 100644
index 000000000..96f627d6a
--- /dev/null
+++ b/manual/en/introduction.txt
@@ -0,0 +1,222 @@
+++ Welcome
+
+Doctrine 2 is an object-relational mapper (ORM) for PHP 5.3.0+ that provides
+transparent persistence for PHP objects. It sits on top of a powerful database
+abstraction layer (DBAL). One of its key features is the option to write
+database queries in a proprietary object oriented SQL dialect called Doctrine
+Query Language (DQL), inspired by Hibernates HQL. This provides developers with
+a powerful alternative to SQL that maintains flexibility without requiring
+unnecessary code duplication.
+
+++ Disclaimer
+
+This is the Doctrine 2 reference documentation. Introductory guides and tutorials that you can follow along from start to finish, like the "Guide to Doctrine" book known from the Doctrine 1.x series, will be available at a later date.
+
+++ Requirements
+
+Doctrine 2 requires a minimum of PHP 5.3.0. For greatly improved performance it
+is also recommended that you use APC with PHP.
+
+++ Doctrine 2 Packages
+
+Doctrine 2 is divided into three main packages.
+
+* Common
+* DBAL (includes Common)
+* ORM (includes DBAL+Common)
+
+This manual mainly covers the ORM package, sometimes touching parts of the
+underlying DBAL and Common packages. The Doctrine code base is split in to these
+packages for a few reasons and they are to...
+
+* ...make things more maintainable and decoupled
+* ...allow you to use the code in Doctrine Common without the ORM or DBAL
+* ...allow you to use the DBAL without the ORM
+
++++ The Common Package
+
+The Common package contains highly reusable components that have no dependencies
+beyond the package itself (and PHP, of course). The root namespace of the
+Common package is `Doctrine\Common`.
+
++++ The DBAL Package
+
+The DBAL package contains an enhanced database abstraction layer on top of
+PDO but is not strongly bound to PDO. The purpose of this layer is to provide a
+single API that bridges most of the differences between the different RDBMS vendors.
+The root namespace of the DBAL package is `Doctrine\DBAL`.
+
++++ The ORM Package
+
+The ORM package contains the object-relational mapping toolkit that provides
+transparent relational persistence for plain PHP objects. The root namespace of
+the ORM package is `Doctrine\ORM`.
+
+++ Installing
+
+Doctrine can be installed many different ways. We will describe all the different
+ways and you can choose which one suits you best.
+
++++ PEAR
+
+You can easily install any of the three Doctrine packages from the PEAR command
+line installation utility.
+
+To install just the `Common` package you can run the following command:
+
+ $ sudo pear install pear.phpdoctrine.org/DoctrineCommon-2.0.0
+
+If you want to use the Doctrine Database Abstraction Layer you can install it
+with the following command.
+
+ $ sudo pear install pear.phpdoctrine.org/DoctrineDBAL-2.0.0
+
+Or, if you want to get the works and go for the ORM you can install it with the
+following command.
+
+ $ sudo pear install pear.phpdoctrine.org/DoctrineORM-2.0.0
+
+When you have a package installed via PEAR you can required and load the
+`ClassLoader` with the following code.
+
+ [php]
+ require 'Doctrine/Common/ClassLoader.php';
+ $classLoader = new \Doctrine\Common\ClassLoader();
+
+The packages are installed in to your shared PEAR PHP code folder in a folder
+named `Doctrine`. You also get a nice command line utility installed and made
+available on your system. Now when you run the `doctrine` command you will
+see what you can do with it.
+
+ $ doctrine
+ Doctrine Command Line Interface
+ Available Tasks:
+ core:help
+ dbal:run-sql (--file= | --sql=) --depth=
+ orm:clear-cache (--query | --metadata | --result [--id=] [--regex=] [--prefix=] [--suffix=])
+ orm:convert-mapping (--from=