Join the specified queries using the OR operator
            
         
        Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic static Query Or(
	params Query[] queries
)
Public Shared Function Or ( 
	ParamArray queries As Query()
) As Query
public:
static Query^ Or(
	... array<Query^>^ queries
)
static member Or : 
        queries : Query[] -> Query 
Parameters
- queries
 - Type: Rally.RestApiQuery
The queries to be joined 
Return Value
Type: 
QueryThe joined query
ExamplesQuery query = Query.Or(new Query("Release.Name", Query.Operator.Equals, "My Release"),
                       new Query("Iteration.Name", Query.Operator.Equals, "My Iteration")
See Also