From d546275bd3231d3e20ec4ecbe8730dabc989982a Mon Sep 17 00:00:00 2001 From: oneRain Date: Mon, 27 Jul 2020 17:47:55 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=A1=A5=E5=85=85=20WhereContainedIn?= =?UTF-8?q?=20=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Realtime/Conversation/LCIMConversationQuery.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Realtime/Realtime/Conversation/LCIMConversationQuery.cs b/Realtime/Realtime/Conversation/LCIMConversationQuery.cs index 700ba8d..e25fc11 100644 --- a/Realtime/Realtime/Conversation/LCIMConversationQuery.cs +++ b/Realtime/Realtime/Conversation/LCIMConversationQuery.cs @@ -52,6 +52,18 @@ namespace LeanCloud.Realtime { return this; } + /// + /// 不包含 + /// + /// + /// + /// + public LCIMConversationQuery WhereNotContainedIn(string key, + IEnumerable values) { + Condition.WhereNotContainedIn(key, values); + return this; + } + /// /// 包含全部 ///