Queries the data store by filter expression and returns the (optionally paged) results.

public abstract IAsyncEnumerable<T> FindManyAsync(Expression<Func<T, bool>> filter, CancellationToken cancellationToken)
Returns:
IAsyncEnumerable<T>

Parameters

filter Expression<Func<T, bool>>

The filter expression used to query the data store.

cancellationToken CancellationToken
In this article