From 34374db56ec777911868f28d6914491b1804a689 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 7 Apr 2013 14:02:47 +0200 Subject: [PATCH] Enhance documentation on IDENTITY() for composite keys (ref DDC-2202) --- docs/en/reference/dql-doctrine-query-language.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/reference/dql-doctrine-query-language.rst b/docs/en/reference/dql-doctrine-query-language.rst index c140d5599..b82cbabda 100644 --- a/docs/en/reference/dql-doctrine-query-language.rst +++ b/docs/en/reference/dql-doctrine-query-language.rst @@ -427,13 +427,14 @@ Get all users visible on a given website that have chosen certain gender: createQuery('SELECT u FROM User u WHERE u.gender IN (SELECT IDENTITY(agl.gender) FROM Site s JOIN s.activeGenderList agl WHERE s.id = ?1)'); -IDENTITY() DQL Function when the association has a composite primary key: +Starting with 2.4, the IDENTITY() DQL function also works for composite primary keys: .. code-block:: php createQuery('SELECT IDENTITY(c.location, 'latitude') AS latitude, IDENTITY(c.location, 'longitude') AS longitude FROM Checkpoint c WHERE c.user = ?1'); + Partial Object Syntax ^^^^^^^^^^^^^^^^^^^^^