Method ReplaceOneAsync
ReplaceOneAsync<TDocument>(IMongoCollection<TDocument>, Expression<Func<TDocument, bool>>, TDocument, ReplaceOptions, CancellationToken)
Replaces a single document.
public static Task<ReplaceOneResult> ReplaceOneAsync<TDocument>(this IMongoCollection<TDocument> collection, Expression<Func<TDocument, bool>> filter, TDocument replacement, ReplaceOptions options = null, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
filter
Expression<Func<TDocument, bool>>The filter.
replacement
TDocumentThe replacement.
options
ReplaceOptions The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- Task<Replace
One >Result The result of the replacement.
Type Parameters
TDocument
The type of the document.
ReplaceOneAsync<TDocument>(IMongoCollection<TDocument>, Expression<Func<TDocument, bool>>, TDocument, UpdateOptions, CancellationToken)
Replaces a single document.
[Obsolete("Use the overload that takes a ReplaceOptions instead of an UpdateOptions.")]
public static Task<ReplaceOneResult> ReplaceOneAsync<TDocument>(this IMongoCollection<TDocument> collection, Expression<Func<TDocument, bool>> filter, TDocument replacement, UpdateOptions options, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
filter
Expression<Func<TDocument, bool>>The filter.
replacement
TDocumentThe replacement.
options
UpdateOptions The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- Task<Replace
One >Result The result of the replacement.
Type Parameters
TDocument
The type of the document.
ReplaceOneAsync<TDocument>(IMongoCollection<TDocument>, IClientSessionHandle, Expression<Func<TDocument, bool>>, TDocument, ReplaceOptions, CancellationToken)
Replaces a single document.
public static Task<ReplaceOneResult> ReplaceOneAsync<TDocument>(this IMongoCollection<TDocument> collection, IClientSessionHandle session, Expression<Func<TDocument, bool>> filter, TDocument replacement, ReplaceOptions options = null, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
session
IClientSession Handle The session.
filter
Expression<Func<TDocument, bool>>The filter.
replacement
TDocumentThe replacement.
options
ReplaceOptions The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- Task<Replace
One >Result The result of the replacement.
Type Parameters
TDocument
The type of the document.
ReplaceOneAsync<TDocument>(IMongoCollection<TDocument>, IClientSessionHandle, Expression<Func<TDocument, bool>>, TDocument, UpdateOptions, CancellationToken)
Replaces a single document.
[Obsolete("Use the overload that takes a ReplaceOptions instead of an UpdateOptions.")]
public static Task<ReplaceOneResult> ReplaceOneAsync<TDocument>(this IMongoCollection<TDocument> collection, IClientSessionHandle session, Expression<Func<TDocument, bool>> filter, TDocument replacement, UpdateOptions options, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
session
IClientSession Handle The session.
filter
Expression<Func<TDocument, bool>>The filter.
replacement
TDocumentThe replacement.
options
UpdateOptions The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- Task<Replace
One >Result The result of the replacement.
Type Parameters
TDocument
The type of the document.