Click or drag to resize
Query Constructor (String, QueryOperator, String)
Create a new query built from the specified attribute, operator and value

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public Query(
	string attribute,
	QueryOperator op,
	string value
)

Parameters

attribute
Type: SystemString
The attribute to be filtered by
op
Type: Rally.RestApiQueryOperator
The filter operator
value
Type: SystemString
The value to be filtered on
Examples
C#
Query query = new Query("Name", Query.Operator.Contains, "My Item");
See Also