From b5e5cb1c6595e2c8ff9532ce95cfae3267228e89 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Fri, 23 Jul 2010 23:39:36 +0200 Subject: [PATCH] Removed examples of Nested Path Expressions from DQL docs --- manual/en/dql-doctrine-query-language.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/en/dql-doctrine-query-language.txt b/manual/en/dql-doctrine-query-language.txt index e2d9e6cdb..034b8b546 100644 --- a/manual/en/dql-doctrine-query-language.txt +++ b/manual/en/dql-doctrine-query-language.txt @@ -119,13 +119,13 @@ Retrieve the IDs of all CmsUsers: Retrieve the IDs of all users that have written an article: [php] - $query = $em->createQuery('SELECT DISTINCT a.user.id FROM CmsArticle a'); + $query = $em->createQuery('SELECT DISTINCT u.id FROM CmsArticle a JOIN a.user u'); $ids = $query->getResult(); // array of CmsUser ids Retrieve all articles and sort them by the name of the articles users instance: [php] - $query = $em->createQuery('SELECT a FROM CmsArticle a ORDER BY a.user.name ASC'); + $query = $em->createQuery('SELECT a FROM CmsArticle a JOIN a.user u ORDER BY u.name ASC'); $articles = $query->getResult(); // array of CmsArticle objects Retrieve the Username and Name of a CmsUser: