コード例 #1
0
 /// <inheritdoc/>
 public async Task <IEnumerable <TProjection> > ProjectManyAsync <TProjection>(
     Expression <Func <TModel, bool> > where,
     Expression <Func <TModel, TProjection> > project,
     string collectionName = null,
     CancellationToken cancellationToken = default(CancellationToken))
 {
     return(await database.ProjectManyQueryAsync(where, project, collectionName, cancellationToken));
 }