| IEntityCollection.PerformGetMultiAsync Method  | 
            Async variant of 
PerformGetMulti(QueryParameters).
            Retrieves in this Collection object all Entity objects which match with the specified filter, formulated in the predicate or predicate expression definition, using the passed in relations to construct the total query.
            
 
Namespace: SD.LLBLGen.Pro.ORMSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
SyntaxTask<bool> PerformGetMultiAsync(
	QueryParameters parameters,
	CancellationToken cancellationToken
)
Function PerformGetMultiAsync ( 
	parameters As QueryParameters,
	cancellationToken As CancellationToken
) As Task(Of Boolean)
Parameters
- parameters
 - Type: SD.LLBLGen.Pro.ORMSupportClasses.QueryParameters
The parameters for the query. - cancellationToken
 - Type: System.Threading.CancellationToken
The cancellation token. 
Return Value
Type: 
Task<Boolean>
            true if succeeded, false otherwise
            
See Also