├── .gitignore ├── .gitmodules ├── README.md ├── bin ├── generate-docs.sh └── install-dependencies.sh └── en ├── Makefile ├── _exts └── configurationblock.py ├── conf.py ├── cookbook ├── advanced-field-value-conversion-using-custom-mapping-types.rst ├── aggregate-fields.rst ├── decorator-pattern.rst ├── dql-custom-walkers.rst ├── dql-user-defined-functions.rst ├── entities-in-session.rst ├── implementing-arrayaccess-for-domain-objects.rst ├── implementing-the-notify-changetracking-policy.rst ├── implementing-wakeup-or-clone.rst ├── integrating-with-codeigniter.rst ├── mysql-enums.rst ├── resolve-target-entity-listener.rst ├── sql-table-prefixes.rst ├── strategy-cookbook-introduction.rst ├── validation-of-entities.rst └── working-with-datetime.rst ├── index.rst ├── make.bat ├── reference ├── annotations-reference.rst ├── architecture.rst ├── association-mapping.rst ├── basic-mapping.rst ├── batch-processing.rst ├── best-practices.rst ├── caching.rst ├── change-tracking-policies.rst ├── configuration.rst ├── dql-doctrine-query-language.rst ├── events.rst ├── faq.rst ├── filters.rst ├── improving-performance.rst ├── inheritance-mapping.rst ├── installation.rst ├── limitations-and-known-issues.rst ├── metadata-drivers.rst ├── namingstrategy.rst ├── native-sql.rst ├── partial-objects.rst ├── php-mapping.rst ├── query-builder.rst ├── tools.rst ├── transactions-and-concurrency.rst ├── unitofwork-associations.rst ├── unitofwork.rst ├── working-with-associations.rst ├── working-with-objects.rst ├── xml-mapping.rst └── yaml-mapping.rst ├── toc.rst └── tutorials ├── composite-primary-keys.rst ├── extra-lazy-associations.rst ├── getting-started-database.rst ├── getting-started-models.rst ├── getting-started.rst ├── in-ten-quick-steps.rst ├── ordered-associations.rst ├── override-field-association-mappings-in-subclasses.rst ├── pagination.rst └── working-with-indexed-associations.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/bin/generate-docs.sh -------------------------------------------------------------------------------- /bin/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/bin/install-dependencies.sh -------------------------------------------------------------------------------- /en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/Makefile -------------------------------------------------------------------------------- /en/_exts/configurationblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/_exts/configurationblock.py -------------------------------------------------------------------------------- /en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/conf.py -------------------------------------------------------------------------------- /en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst -------------------------------------------------------------------------------- /en/cookbook/aggregate-fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/aggregate-fields.rst -------------------------------------------------------------------------------- /en/cookbook/decorator-pattern.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/decorator-pattern.rst -------------------------------------------------------------------------------- /en/cookbook/dql-custom-walkers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/dql-custom-walkers.rst -------------------------------------------------------------------------------- /en/cookbook/dql-user-defined-functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/dql-user-defined-functions.rst -------------------------------------------------------------------------------- /en/cookbook/entities-in-session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/entities-in-session.rst -------------------------------------------------------------------------------- /en/cookbook/implementing-arrayaccess-for-domain-objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/implementing-arrayaccess-for-domain-objects.rst -------------------------------------------------------------------------------- /en/cookbook/implementing-the-notify-changetracking-policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/implementing-the-notify-changetracking-policy.rst -------------------------------------------------------------------------------- /en/cookbook/implementing-wakeup-or-clone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/implementing-wakeup-or-clone.rst -------------------------------------------------------------------------------- /en/cookbook/integrating-with-codeigniter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/integrating-with-codeigniter.rst -------------------------------------------------------------------------------- /en/cookbook/mysql-enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/mysql-enums.rst -------------------------------------------------------------------------------- /en/cookbook/resolve-target-entity-listener.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/resolve-target-entity-listener.rst -------------------------------------------------------------------------------- /en/cookbook/sql-table-prefixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/sql-table-prefixes.rst -------------------------------------------------------------------------------- /en/cookbook/strategy-cookbook-introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/strategy-cookbook-introduction.rst -------------------------------------------------------------------------------- /en/cookbook/validation-of-entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/validation-of-entities.rst -------------------------------------------------------------------------------- /en/cookbook/working-with-datetime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/cookbook/working-with-datetime.rst -------------------------------------------------------------------------------- /en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/index.rst -------------------------------------------------------------------------------- /en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/make.bat -------------------------------------------------------------------------------- /en/reference/annotations-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/annotations-reference.rst -------------------------------------------------------------------------------- /en/reference/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/architecture.rst -------------------------------------------------------------------------------- /en/reference/association-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/association-mapping.rst -------------------------------------------------------------------------------- /en/reference/basic-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/basic-mapping.rst -------------------------------------------------------------------------------- /en/reference/batch-processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/batch-processing.rst -------------------------------------------------------------------------------- /en/reference/best-practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/best-practices.rst -------------------------------------------------------------------------------- /en/reference/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/caching.rst -------------------------------------------------------------------------------- /en/reference/change-tracking-policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/change-tracking-policies.rst -------------------------------------------------------------------------------- /en/reference/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/configuration.rst -------------------------------------------------------------------------------- /en/reference/dql-doctrine-query-language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/dql-doctrine-query-language.rst -------------------------------------------------------------------------------- /en/reference/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/events.rst -------------------------------------------------------------------------------- /en/reference/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/faq.rst -------------------------------------------------------------------------------- /en/reference/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/filters.rst -------------------------------------------------------------------------------- /en/reference/improving-performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/improving-performance.rst -------------------------------------------------------------------------------- /en/reference/inheritance-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/inheritance-mapping.rst -------------------------------------------------------------------------------- /en/reference/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/installation.rst -------------------------------------------------------------------------------- /en/reference/limitations-and-known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/limitations-and-known-issues.rst -------------------------------------------------------------------------------- /en/reference/metadata-drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/metadata-drivers.rst -------------------------------------------------------------------------------- /en/reference/namingstrategy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/namingstrategy.rst -------------------------------------------------------------------------------- /en/reference/native-sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/native-sql.rst -------------------------------------------------------------------------------- /en/reference/partial-objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/partial-objects.rst -------------------------------------------------------------------------------- /en/reference/php-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/php-mapping.rst -------------------------------------------------------------------------------- /en/reference/query-builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/query-builder.rst -------------------------------------------------------------------------------- /en/reference/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/tools.rst -------------------------------------------------------------------------------- /en/reference/transactions-and-concurrency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/transactions-and-concurrency.rst -------------------------------------------------------------------------------- /en/reference/unitofwork-associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/unitofwork-associations.rst -------------------------------------------------------------------------------- /en/reference/unitofwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/unitofwork.rst -------------------------------------------------------------------------------- /en/reference/working-with-associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/working-with-associations.rst -------------------------------------------------------------------------------- /en/reference/working-with-objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/working-with-objects.rst -------------------------------------------------------------------------------- /en/reference/xml-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/xml-mapping.rst -------------------------------------------------------------------------------- /en/reference/yaml-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/reference/yaml-mapping.rst -------------------------------------------------------------------------------- /en/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/toc.rst -------------------------------------------------------------------------------- /en/tutorials/composite-primary-keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/composite-primary-keys.rst -------------------------------------------------------------------------------- /en/tutorials/extra-lazy-associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/extra-lazy-associations.rst -------------------------------------------------------------------------------- /en/tutorials/getting-started-database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/getting-started-database.rst -------------------------------------------------------------------------------- /en/tutorials/getting-started-models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/getting-started-models.rst -------------------------------------------------------------------------------- /en/tutorials/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/getting-started.rst -------------------------------------------------------------------------------- /en/tutorials/in-ten-quick-steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/in-ten-quick-steps.rst -------------------------------------------------------------------------------- /en/tutorials/ordered-associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/ordered-associations.rst -------------------------------------------------------------------------------- /en/tutorials/override-field-association-mappings-in-subclasses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/override-field-association-mappings-in-subclasses.rst -------------------------------------------------------------------------------- /en/tutorials/pagination.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/pagination.rst -------------------------------------------------------------------------------- /en/tutorials/working-with-indexed-associations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/orm-documentation/HEAD/en/tutorials/working-with-indexed-associations.rst --------------------------------------------------------------------------------