Constructs a query that is the or of the given queries.
Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax
public static ParseQuery<T> Or<T>( this ParseQuery<T> source, params ParseQuery<T>[] queries ) where T : ParseObject
Parameters
- source
- Type: ParseParseQueryT
An initial query to 'or' with additional queries. - queries
- Type: ParseParseQueryT
The list of ParseQueries to 'or' together.
Type Parameters
- T
- The type of ParseObject being queried.
Return Value
Type: ParseQueryTA query that is the or of the given queries.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ParseQueryT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also