/// <inheritdoc/>
 public async Task <IEnumerable <TModel> > GetAllAsync(
     string collectionName = null,
     CancellationToken cancellationToken = default(CancellationToken))
 {
     return(await database.GetAllQueryAsync <TModel>(collectionName, cancellationToken));
 }