Method SingleAsync
SingleAsync<TDocument, TProjection>(IFindFluent<TDocument, TProjection>, CancellationToken)
Gets a single result.
public static Task<TProjection> SingleAsync<TDocument, TProjection>(this IFindFluent<TDocument, TProjection> find, CancellationToken cancellationToken = default)
Parameters
find
IFindFluent<TDocument, TProjection>The fluent find.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<TProjection>
A Task whose result is the single result.
Type Parameters
TDocument
The type of the document.
TProjection
The type of the projection (same as TDocument if there is no projection).