Click or drag to resize
QueryAnd Method (Query)
Join the specified queries using the AND operator

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public static Query And(
	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.And(new Query("Release.Name", Query.Operator.Equals, "My Release"),
                        new Query("Iteration.Name", Query.Operator.Equals, "My Iteration")
See Also