Пример #1
0
 /// <summary>
 /// Updates a document.
 /// </summary>
 /// <typeparam name="TDocument">The type representing a Document.</typeparam>
 /// <typeparam name="TKey">The type of the primary key for a Document.</typeparam>
 /// <typeparam name="TField">The type of the field to update.</typeparam>
 /// <param name="session">The client session.</param>
 /// <param name="documentToModify">The document to modify.</param>
 /// <param name="field">The field to update.</param>
 /// <param name="value">The value of the field.</param>
 /// <param name="cancellationToken">The optional cancellation token.</param>
 /// <returns>A boolean value indicating success.</returns>
 public virtual async Task <bool> UpdateOneAsync <TDocument, TKey, TField>(IClientSessionHandle session, TDocument documentToModify, Expression <Func <TDocument, TField> > field, TField value, CancellationToken cancellationToken = default(CancellationToken))
     where TDocument : IDocument <TKey>
     where TKey : IEquatable <TKey>
 {
     return(await MongoDbUpdater.UpdateOneAsync <TDocument, TKey, TField>(session, documentToModify, field, value, cancellationToken));
 }
Пример #2
0
 /// <summary>
 /// Updates a document.
 /// </summary>
 /// <typeparam name="TDocument">The type representing a Document.</typeparam>
 /// <typeparam name="TKey">The type of the primary key for a Document.</typeparam>
 /// <param name="session">The client session.</param>
 /// <param name="documentToModify">The document to modify.</param>
 /// <param name="update">The update definition.</param>
 /// <param name="cancellationToken">The optional cancellation token.</param>
 /// <returns>A boolean value indicating success.</returns>
 public virtual async Task <bool> UpdateOneAsync <TDocument, TKey>(IClientSessionHandle session, TDocument documentToModify, UpdateDefinition <TDocument> update, CancellationToken cancellationToken = default(CancellationToken))
     where TDocument : IDocument <TKey>
     where TKey : IEquatable <TKey>
 {
     return(await MongoDbUpdater.UpdateOneAsync <TDocument, TKey>(session, documentToModify, update, cancellationToken));
 }
Пример #3
0
 /// <summary>
 /// Updates a document.
 /// </summary>
 /// <typeparam name="TDocument">The type representing a Document.</typeparam>
 /// <typeparam name="TKey">The type of the primary key for a Document.</typeparam>
 /// <typeparam name="TField">The type of the field to update.</typeparam>
 /// <param name="session">The client session.</param>
 /// <param name="filter">The filter for the update.</param>
 /// <param name="field">The field to update.</param>
 /// <param name="value">The value of the field.</param>
 /// <param name="partitionKey">The optional partition key.</param>
 /// <param name="cancellationToken">The optional cancellation token.</param>
 /// <returns>A boolean value indicating success.</returns>
 public virtual async Task <bool> UpdateOneAsync <TDocument, TKey, TField>(IClientSessionHandle session, Expression <Func <TDocument, bool> > filter, Expression <Func <TDocument, TField> > field, TField value, string partitionKey = null, CancellationToken cancellationToken = default(CancellationToken))
     where TDocument : IDocument <TKey>
     where TKey : IEquatable <TKey>
 {
     return(await MongoDbUpdater.UpdateOneAsync <TDocument, TKey, TField>(session, filter, field, value, partitionKey, cancellationToken));
 }
Пример #4
0
 /// <summary>
 /// Updates a document.
 /// </summary>
 /// <typeparam name="TDocument">The type representing a Document.</typeparam>
 /// <typeparam name="TKey">The type of the primary key for a Document.</typeparam>
 /// <param name="session">The client session.</param>
 /// <param name="modifiedDocument">The document with the modifications you want to persist.</param>
 /// <param name="cancellationToken">The optional cancellation token.</param>
 /// <returns>A boolean value indicating success.</returns>
 public virtual async Task <bool> UpdateOneAsync <TDocument, TKey>(IClientSessionHandle session, TDocument modifiedDocument, CancellationToken cancellationToken = default(CancellationToken))
     where TDocument : IDocument <TKey>
     where TKey : IEquatable <TKey>
 {
     return(await MongoDbUpdater.UpdateOneAsync <TDocument, TKey>(session, modifiedDocument, cancellationToken));
 }
 public Task <bool> UpdateAsync <TDocument, TKey>(TDocument document) where TDocument : AggregateRootWithId <TKey>
 {
     return(_mongoDbUpdater.UpdateOneAsync <TDocument, TKey>(document));
 }