Join the specified query to this query
            using the AND operator.
            
         
        Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic Query And(
	Query q
)
Public Function And ( 
	q As Query
) As Query
public:
Query^ And(
	Query^ q
)
member And : 
        q : Query -> Query 
Parameters
- q
 - Type: Rally.RestApiQuery
The query to be joined 
Return Value
Type: 
QueryThe joined query
ExamplesQuery query = new Query("Release.Name", Query.Operator.Equals, "My Release");
Query finalQuery = query.And(new Query("Iteration.Name", Query.Operator.Equals, "My Iteration"));
See Also