From 798f346a66299c65ffe792f047f7375b7a8420e1 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sun, 10 Sep 2017 17:19:08 +0200 Subject: [PATCH] Fixed orm:0.8-2 notice --- notice/orm/0.8-2.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/notice/orm/0.8-2.md b/notice/orm/0.8-2.md index 6b93496..fc83882 100644 --- a/notice/orm/0.8-2.md +++ b/notice/orm/0.8-2.md @@ -136,9 +136,11 @@ Note: `Rows::COND_EQUAL` is set by default if missing > #### (2.6) Where clause -The where clause uses one of php's magic functions (__call). So the name of the method you call will contain the field of the condition. But you must use the correct case, removing '_' and setting the next character to upper case. The rest will be forced to lower case. +The where clause uses one of php's magic functions (\_\_call). So the name of the method you call will contain the field of the condition. But you must use the correct case, removing '\_' and setting the next character to upper case. The rest will be forced to lower case. You can refer to the following examples: + + |Field|condition| |---|---| |username|`whereUsername`|