Table of Contents

Method ToListAsync

Namespace
MongoDB.Driver.Linq
Assembly
MongoDB.Driver.dll

ToListAsync<TSource>(IQueryable<TSource>, CancellationToken)

Executes the LINQ query and returns a list of the results.

public static Task<List<TSource>> ToListAsync<TSource>(this IQueryable<TSource> source, CancellationToken cancellationToken = default)

Parameters

source IQueryable<TSource>

The sequence to return elements from.

cancellationToken CancellationToken

The cancellation token.

Returns

Task<List<TSource>>

A list of the results of executing the LINQ query.

Type Parameters

TSource

The type of the elements of source.