Adds a constraint to the query that requires that a particular key's value
does not match another ParseQuery. This only works on keys whose values are
ParseObjects or lists of ParseObjects.
Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax
public ParseQuery<T> WhereDoesNotMatchQuery<TOther>( string key, ParseQuery<TOther> query ) where TOther : ParseObject
Parameters
- key
- Type: SystemString
The key to check. - query
- Type: ParseParseQueryTOther
The query that the value should not match.
Type Parameters
- TOther
Return Value
Type: ParseQueryTA new query with the additional constraint.
See Also