Click or drag to resize
QueryOr Method (Query)
Join the specified queries using the OR operator

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public static Query Or(
	params Query[] queries
)

Parameters

queries
Type: Rally.RestApiQuery
The queries to be joined

Return Value

Type: Query
The joined query
Examples
C#
Query query = Query.Or(new Query("Release.Name", Query.Operator.Equals, "My Release"),
                       new Query("Iteration.Name", Query.Operator.Equals, "My Iteration")
See Also