ParseQueryTWhereDoesNotMatchesKeyInQueryTOther Method Parse
Adds a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public ParseQuery<T> WhereDoesNotMatchesKeyInQuery<TOther>(
	string key,
	string keyInQuery,
	ParseQuery<TOther> query
)
where TOther : ParseObject

Parameters

key
Type: SystemString
The key whose value is being checked.
keyInQuery
Type: SystemString
The key in the objects from the subquery to look in.
query
Type: ParseParseQueryTOther
The subquery to run

Type Parameters

TOther

Return Value

Type: ParseQueryT
A new query with the additional constraint.
See Also

Reference