added unit tests for MongoDBCreator and missing CancellationTokens

This commit is contained in:
Sean Garrett
2023-06-17 23:42:10 +01:00
parent 1b8f795e00
commit 86d9ea6990
8 changed files with 665 additions and 63 deletions
@@ -24,7 +24,7 @@ namespace MongoDbGenericRepository.DataAccess.Delete
#region Delete TKey
/// <inheritdoc />
public virtual long DeleteOne<TDocument, TKey>(TDocument document, CancellationToken cancellationToken)
public virtual long DeleteOne<TDocument, TKey>(TDocument document, CancellationToken cancellationToken = default)
where TDocument : IDocument<TKey>
where TKey : IEquatable<TKey>
{