1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/manual/docs/Basic Components - Query - Introduction.php

10 lines
569 B
PHP
Raw Normal View History

2006-12-16 01:31:28 +03:00
<?php ?>
2006-07-24 01:08:06 +04:00
DQL (Doctrine Query Language) is a object query language which allows
you to find objects. DQL understands things like object relationships, polymorphism and
2006-12-16 01:31:28 +03:00
inheritance (including column aggregation inheritance).
For more info about DQL see the actual DQL chapter.
2006-07-24 01:08:06 +04:00
<br \><br \>
2006-12-16 01:31:28 +03:00
Doctrine_Query along with Doctrine_Expression provide an easy-to-use wrapper for writing DQL queries. Creating a new
query object can be done by either using the new operator or by calling create method. The create method exists for allowing easy
method call chaining.