Click or drag to resize

CorrigoServiceRetrieveMultiple Method

Uses a query expression to retrieve CorrigoNet entities. Takes single parameter which specifies either a QueryExpression or a QueryByProperty object derived from the QueryBase class. This is the query to be executed for an entity. Returns a collection of entities of the type specified in the query parameter. If the query specified returned no results, an empty collection is returned. Use this method to retrieve one or more entity instances based on criteria specified in the input parameter.

Namespace: CorrigoService
Assembly: ClientXMLDoc (in ClientXMLDoc.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
public CorrigoEntity[] RetrieveMultiple(
	QueryBase queryExpression
)

Parameters

queryExpression  QueryBase
Specifies either a QueryExpression or a QueryByAttribute object derived from the QueryBase class. This is the query to be executed for an entity. The QueryExpression or QueryByAttribute object contains the type information for the entity.

Return Value

CorrigoEntity
Returns a collection of entities of the type specified in the query parameter. If the query specified returned no results, an empty collection is returned.
See Also