Doctrine Query Language (DQL) is an Object Query Language created for helping users in complex object retrieval.
I have this Query in native MySQL Code SELECT * FROM `turn` LEFT JOIN ( poi ) ON ( turn.id = poi.turn_id ) …
mysql symfony doctrine-orm dqlI need to construct DQL with a QueryBuilder like this [QUERY]... AND WHERE e.type = x OR e.type = Y …
php oop doctrine-orm doctrine dqlI'm following the security chapter of the Symfony 2 book. There's is an example with a table USERS and GROUPS. There …
doctrine symfony many-to-many dqlSituaction: I am trying to select count() in DQL for users NOT in specific group. Standard ManyToMany unidirectional relation between …
sql symfony doctrine-orm fosuserbundle dqlI was used discriminator column in where clause like this: //f = root entity $qb = $this->createQueryBuilder('f'); $qb->…
php doctrine-orm dql discriminatorI'm having trouble crafting a fairly simple query with Doctrine... I have two arrays ($countries, $cities) and I need to …
symfony1 doctrine where-clause dqlIf I'm using querying without queryBuilder with this dql $query = $this->_em ->createQuery("SELECT p, g, c …
php symfony doctrine-orm dqlI am trying to get Doctrine2 Entities, ordered by their ID which apparently is a String even though it contains …
casting doctrine-orm type-conversion dqlI have two classes in this example - DeliveryMethod and Country. They have a many-to-many relationship with each other. What …
php doctrine dql