From a956738da5c8636aaff87ed6826d81fef68ed1b0 Mon Sep 17 00:00:00 2001 From: zYne Date: Sat, 11 Aug 2007 18:46:04 +0000 Subject: [PATCH] --- manual/new/docs/en/working-with-objects.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/manual/new/docs/en/working-with-objects.txt b/manual/new/docs/en/working-with-objects.txt index 601d40582..940504334 100644 --- a/manual/new/docs/en/working-with-objects.txt +++ b/manual/new/docs/en/working-with-objects.txt @@ -27,6 +27,7 @@ $user = $conn->getTable('User')->find(5); $user->GroupUser ->remove(0) ->remove(1); +$user->save(); This is due to a fact that $user->GroupUser loads all group links for given user. This can time-consuming task if user belongs to many groups. Even if the user belongs to few groups this will still execute an unnecessary SELECT statement.