Method ToCursorAsync
ToCursorAsync<TSource>(IQueryable<TSource>, CancellationToken)
Executes the LINQ query and returns a cursor to the results.
public static Task<IAsyncCursor<TSource>> ToCursorAsync<TSource>(this IQueryable<TSource> source, CancellationToken cancellationToken = default)
Parameters
source
IQueryable<TSource>The sequence to return elements from.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<IAsyncCursor<TSource>>
A cursor to the results of executing the LINQ query.
Type Parameters
TSource
The type of the elements of
source
.