ParseQueryTWhereEqualTo Method Parse
Adds a constraint to the query that requires a particular key's value to be equal to the provided value.

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

public ParseQuery<T> WhereEqualTo(
	string key,
	Object value
)

Parameters

key
Type: SystemString
The key to check.
value
Type: SystemObject
The value that the ParseObject must contain.

Return Value

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

Reference