| QueryableExtensionMethodsToListAsyncTResult Method (IQueryableTResult, CancellationToken) | 
 
            Executes source asynchronously and stores the results in a new List(Of TResult). Requires the IQueryable to implement ILLBLGenProQuery.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
 Syntax
Syntaxpublic static Task<List<TResult>> ToListAsync<TResult>(
	this IQueryable<TResult> source,
	CancellationToken cancellationToken
)
<ExtensionAttribute>
Public Shared Function ToListAsync(Of TResult) ( 
	source As IQueryable(Of TResult),
	cancellationToken As CancellationToken
) As Task(Of List(Of TResult))
Parameters
- source
- Type: System.LinqIQueryableTResult
 The source.
- cancellationToken
- Type: System.ThreadingCancellationToken
 The cancellation token.
Type Parameters
- TResult
- The type of the result.
Return Value
Type: 
TaskListTResult
            The results of source in a new List(Of TResult).
            
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IQueryableTResult. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 Remarks
RemarksNot usable wrapped inside a Linq query. Use this method to execute a linq query asynchronously
 See Also
See Also