From dfbf996a508bae73d87a30cda81255c93ca45eba Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 26 Nov 2013 14:20:51 +0100 Subject: [PATCH] Added a note about changing the fetch mode for to-many relations --- docs/en/reference/dql-doctrine-query-language.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/en/reference/dql-doctrine-query-language.rst b/docs/en/reference/dql-doctrine-query-language.rst index fd8fca430..84936ea67 100644 --- a/docs/en/reference/dql-doctrine-query-language.rst +++ b/docs/en/reference/dql-doctrine-query-language.rst @@ -1370,6 +1370,9 @@ Given that there are 10 users and corresponding addresses in the database the ex SELECT * FROM users; SELECT * FROM address WHERE id IN (1, 2, 3, 4, 5, 6, 7, 8, 9, 10); +.. note:: + Changing the fetch mode during a query is only possible for one-to-one and many-to-one relations. + EBNF ----