Click or drag to resize
QueryOr Method (Query)
Join the specified query to this query 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 Query Or(
	Query q
)

Parameters

q
Type: Rally.RestApiQuery
The query to be joined

Return Value

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