ParseQueryTWhereContainsAllTIn Method Parse
Add a constraint to the querey that requires a particular key's value to be a list containing all of the elements in the provided list of values.

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

public ParseQuery<T> WhereContainsAll<TIn>(
	string key,
	IEnumerable<TIn> values
)

Parameters

key
Type: SystemString
The key to check.
values
Type: System.Collections.GenericIEnumerableTIn
The values that will match.

Type Parameters

TIn

Return Value

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

Reference