Merge branch 'master' into en-api-doc

Jang Rush 2020-07-28 11:37:52 +08:00 committed by GitHub
commit d1908858ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -52,6 +52,18 @@ namespace LeanCloud.Realtime {
return this;
}
/// <summary>
/// The value of key must not be contained in values.
/// </summary>
/// <param name="key"></param>
/// <param name="values"></param>
/// <returns></returns>
public LCIMConversationQuery WhereNotContainedIn(string key,
IEnumerable values) {
Condition.WhereNotContainedIn(key, values);
return this;
}
/// <summary>
/// The array corresponding to key contains all elements in values.
/// </summary>