Merge branch 'master' into en-api-doc
commit
d1908858ef
|
@ -52,6 +52,18 @@ namespace LeanCloud.Realtime {
|
||||||
return this;
|
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>
|
/// <summary>
|
||||||
/// The array corresponding to key contains all elements in values.
|
/// The array corresponding to key contains all elements in values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue