From 2828d7b5cdd43198f36a350b26cecea0c64be915 Mon Sep 17 00:00:00 2001 From: Martin Prebio Date: Sun, 1 Dec 2013 22:43:06 +0100 Subject: [PATCH] Mentioning the 'refresh' cascading property in the documentation list --- docs/en/reference/working-with-associations.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/en/reference/working-with-associations.rst b/docs/en/reference/working-with-associations.rst index 791425ee9..863c5f210 100644 --- a/docs/en/reference/working-with-associations.rst +++ b/docs/en/reference/working-with-associations.rst @@ -403,7 +403,7 @@ There are two approaches to handle this problem in your code: Transitive persistence / Cascade Operations ------------------------------------------- -Persisting, removing, detaching and merging individual entities can +Persisting, removing, detaching, refreshing and merging individual entities can become pretty cumbersome, especially when a highly interweaved object graph is involved. Therefore Doctrine 2 provides a mechanism for transitive persistence through cascading of these @@ -419,7 +419,8 @@ The following cascade options exist: - remove : Cascades remove operations to the associated entities. - merge : Cascades merge operations to the associated entities. - detach : Cascades detach operations to the associated entities. -- all : Cascades persist, remove, merge and detach operations to +- refresh : Cascades refresh operations to the associated entities. +- all : Cascades persist, remove, merge, refresh and detach operations to associated entities. .. note::