ParseQueryTWhereMatchesQueryTOther Method Parse
Adds a constraint to the query that requires that a particular key's value matches 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> WhereMatchesQuery<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 match.

Type Parameters

TOther

Return Value

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

Reference