1017 lines
54 KiB
C#
1017 lines
54 KiB
C#
using MongoDB.Driver;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using System.Linq.Expressions;
|
|
using MongoDbGenericRepository.Models;
|
|
using System.Linq;
|
|
using MongoDbGenericRepository.Utils;
|
|
|
|
namespace MongoDbGenericRepository
|
|
{
|
|
/// <summary>
|
|
/// The base Repository, it is meant to be inherited from by your custom custom MongoRepository implementation.
|
|
/// Its constructor must be given a connection string and a database name.
|
|
/// </summary>
|
|
public abstract class BaseMongoRepository : ReadOnlyMongoRepository, IBaseMongoRepository
|
|
{
|
|
private static readonly Random Random = new Random();
|
|
|
|
/// <summary>
|
|
/// The constructor taking a connection string and a database name.
|
|
/// </summary>
|
|
/// <param name="connectionString">The connection string of the MongoDb server.</param>
|
|
/// <param name="databaseName">The name of the database against which you want to perform operations.</param>
|
|
protected BaseMongoRepository(string connectionString, string databaseName) : base(connectionString, databaseName)
|
|
{
|
|
MongoDbContext = new MongoDbContext(connectionString, databaseName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The contructor taking a <see cref="IMongoDbContext"/>.
|
|
/// </summary>
|
|
/// <param name="mongoDbContext">A mongodb context implementing <see cref="IMongoDbContext"/></param>
|
|
protected BaseMongoRepository(IMongoDbContext mongoDbContext) : base(mongoDbContext)
|
|
{
|
|
MongoDbContext = mongoDbContext;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The contructor taking a <see cref="IMongoDatabase"/>.
|
|
/// </summary>
|
|
/// <param name="mongoDatabase">A mongodb context implementing <see cref="IMongoDatabase"/></param>
|
|
protected BaseMongoRepository(IMongoDatabase mongoDatabase) : base(mongoDatabase)
|
|
{
|
|
MongoDbContext = new MongoDbContext(mongoDatabase);
|
|
}
|
|
|
|
/// <summary>
|
|
/// The MongoDbContext
|
|
/// </summary>
|
|
protected IMongoDbContext MongoDbContext = null;
|
|
|
|
#region Create
|
|
|
|
/// <summary>
|
|
/// Asynchronously adds a document to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="document">The document you want to add.</param>
|
|
public async Task AddOneAsync<TDocument>(TDocument document) where TDocument : IDocument
|
|
{
|
|
FormatDocument(document);
|
|
await HandlePartitioned(document).InsertOneAsync(document);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a document to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="document">The document you want to add.</param>
|
|
public void AddOne<TDocument>(TDocument document) where TDocument : IDocument
|
|
{
|
|
FormatDocument(document);
|
|
HandlePartitioned(document).InsertOne(document);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously adds a list of documents to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documents">The documents you want to add.</param>
|
|
public async Task AddManyAsync<TDocument>(IEnumerable<TDocument> documents) where TDocument : IDocument
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return;
|
|
}
|
|
foreach (var doc in documents)
|
|
{
|
|
FormatDocument(doc);
|
|
}
|
|
await HandlePartitioned(documents.FirstOrDefault()).InsertManyAsync(documents);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a list of documents to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documents">The documents you want to add.</param>
|
|
public void AddMany<TDocument>(IEnumerable<TDocument> documents) where TDocument : IDocument
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return;
|
|
}
|
|
foreach (var document in documents)
|
|
{
|
|
FormatDocument(document);
|
|
}
|
|
HandlePartitioned(documents.FirstOrDefault()).InsertMany(documents.ToList());
|
|
}
|
|
|
|
#endregion Create
|
|
|
|
#region Create TKey
|
|
|
|
/// <summary>
|
|
/// Asynchronously adds a document to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </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="document">The document you want to add.</param>
|
|
public async Task AddOneAsync<TDocument, TKey>(TDocument document)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
FormatDocument<TDocument, TKey>(document);
|
|
await HandlePartitioned<TDocument, TKey>(document).InsertOneAsync(document);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a document to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </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="document">The document you want to add.</param>
|
|
public void AddOne<TDocument, TKey>(TDocument document)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
FormatDocument<TDocument, TKey>(document);
|
|
HandlePartitioned<TDocument, TKey>(document).InsertOne(document);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously adds a list of documents to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </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="documents">The documents you want to add.</param>
|
|
public async Task AddManyAsync<TDocument, TKey>(IEnumerable<TDocument> documents)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return;
|
|
}
|
|
foreach (var doc in documents)
|
|
{
|
|
FormatDocument<TDocument, TKey>(doc);
|
|
}
|
|
await HandlePartitioned<TDocument, TKey>(documents.FirstOrDefault()).InsertManyAsync(documents);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a list of documents to the collection.
|
|
/// Populates the Id and AddedAtUtc fields if necessary.
|
|
/// </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="documents">The documents you want to add.</param>
|
|
public void AddMany<TDocument, TKey>(IEnumerable<TDocument> documents)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return;
|
|
}
|
|
foreach (var document in documents)
|
|
{
|
|
FormatDocument<TDocument, TKey>(document);
|
|
}
|
|
HandlePartitioned<TDocument, TKey>(documents.FirstOrDefault()).InsertMany(documents.ToList());
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region Update
|
|
|
|
/// <summary>
|
|
/// Asynchronously Updates a document.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="modifiedDocument">The document with the modifications you want to persist.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument>(TDocument modifiedDocument) where TDocument : IDocument
|
|
{
|
|
var updateRes = await HandlePartitioned(modifiedDocument).ReplaceOneAsync(x => x.Id == modifiedDocument.Id, modifiedDocument);
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a document.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="modifiedDocument">The document with the modifications you want to persist.</param>
|
|
public bool UpdateOne<TDocument>(TDocument modifiedDocument) where TDocument : IDocument
|
|
{
|
|
var updateRes = HandlePartitioned(modifiedDocument).ReplaceOne(x => x.Id == modifiedDocument.Id, modifiedDocument);
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="update">The update definition for the document.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument>(TDocument documentToModify, UpdateDefinition<TDocument> update)
|
|
where TDocument : IDocument
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, update);
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TField">The type of the field.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public bool UpdateOne<TDocument, TField>(TDocument documentToModify, Expression<Func<TDocument, TField>> field, TField value)
|
|
where TDocument : IDocument
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = HandlePartitioned(documentToModify).UpdateOne(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TField">The type of the field.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TField>(TDocument documentToModify, Expression<Func<TDocument, TField>> field, TField value)
|
|
where TDocument : IDocument
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TField">The type of the field.</typeparam>
|
|
/// <param name="filter">The document filter.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public bool UpdateOne<TDocument, TField>(FilterDefinition<TDocument> filter, Expression<Func<TDocument, TField>> field, TField value, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument>() : GetCollection<TDocument>(partitionKey);
|
|
var updateRes = collection.UpdateOne(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TField">The type of the field.</typeparam>
|
|
/// <param name="filter">The document filter.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TField>(FilterDefinition<TDocument> filter, Expression<Func<TDocument, TField>> field, TField value, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument>() : GetCollection<TDocument>(partitionKey);
|
|
var updateRes = await collection.UpdateOneAsync(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="update">The update definition for the document.</param>
|
|
public bool UpdateOne<TDocument>(TDocument documentToModify, UpdateDefinition<TDocument> update)
|
|
where TDocument : IDocument
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = HandlePartitioned(documentToModify).UpdateOne(filter, update, new UpdateOptions { IsUpsert = true });
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
#endregion Update
|
|
|
|
#region Update TKey
|
|
|
|
/// <summary>
|
|
/// Asynchronously 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="modifiedDocument">The document with the modifications you want to persist.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TKey>(TDocument modifiedDocument)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", modifiedDocument.Id);
|
|
var updateRes = await HandlePartitioned<TDocument, TKey>(modifiedDocument).ReplaceOneAsync(filter, modifiedDocument);
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <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="modifiedDocument">The document with the modifications you want to persist.</param>
|
|
public bool UpdateOne<TDocument, TKey>(TDocument modifiedDocument)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", modifiedDocument.Id);
|
|
var updateRes = HandlePartitioned<TDocument, TKey>(modifiedDocument).ReplaceOne(filter, modifiedDocument);
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
|
|
/// </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="documentToModify">The document you want to modify.</param>
|
|
/// <param name="update">The update definition for the document.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TKey>(TDocument documentToModify, UpdateDefinition<TDocument> update)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = await HandlePartitioned<TDocument, TKey>(documentToModify).UpdateOneAsync(filter, update, new UpdateOptions { IsUpsert = true });
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
|
|
/// </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="documentToModify">The document you want to modify.</param>
|
|
/// <param name="update">The update definition for the document.</param>
|
|
public bool UpdateOne<TDocument, TKey>(TDocument documentToModify, UpdateDefinition<TDocument> update)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = HandlePartitioned<TDocument, TKey>(documentToModify).UpdateOne(filter, update, new UpdateOptions { IsUpsert = true });
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </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.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TKey, TField>(TDocument documentToModify, Expression<Func<TDocument, TField>> field, TField value)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = await HandlePartitioned<TDocument, TKey>(documentToModify).UpdateOneAsync(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </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.</typeparam>
|
|
/// <param name="documentToModify">The document you want to modify.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public bool UpdateOne<TDocument, TKey, TField>(TDocument documentToModify, Expression<Func<TDocument, TField>> field, TField value)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", documentToModify.Id);
|
|
var updateRes = HandlePartitioned<TDocument, TKey>(documentToModify).UpdateOne(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </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.</typeparam>
|
|
/// <param name="filter">The document filter.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public async Task<bool> UpdateOneAsync<TDocument, TKey, TField>(FilterDefinition<TDocument> filter, Expression<Func<TDocument, TField>> field, TField value, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument, TKey>() : GetCollection<TDocument, TKey>(partitionKey);
|
|
var updateRes = await collection.UpdateOneAsync(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the property field with the given value update a property field in entities.
|
|
/// </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.</typeparam>
|
|
/// <param name="filter">The document filter.</param>
|
|
/// <param name="field">The field selector.</param>
|
|
/// <param name="value">The new value of the property field.</param>
|
|
public bool UpdateOne<TDocument, TKey, TField>(FilterDefinition<TDocument> filter, Expression<Func<TDocument, TField>> field, TField value, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument, TKey>() : GetCollection<TDocument, TKey>(partitionKey);
|
|
var updateRes = collection.UpdateOne(filter, Builders<TDocument>.Update.Set(field, value));
|
|
return updateRes.ModifiedCount == 1;
|
|
}
|
|
|
|
#endregion Update
|
|
|
|
#region Delete
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a document.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="document">The document you want to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteOneAsync<TDocument>(TDocument document) where TDocument : IDocument
|
|
{
|
|
return (await HandlePartitioned(document).DeleteOneAsync(x => x.Id == document.Id)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a document.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="document">The document you want to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteOne<TDocument>(TDocument document) where TDocument : IDocument
|
|
{
|
|
return HandlePartitioned(document).DeleteOne(x => x.Id == document.Id).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a document matching the condition of the LINQ expression filter.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteOne<TDocument>(Expression<Func<TDocument, bool>> filter, string partitionKey = null) where TDocument : IDocument
|
|
{
|
|
return HandlePartitioned<TDocument>(partitionKey).DeleteOne(filter).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteOneAsync<TDocument>(Expression<Func<TDocument, bool>> filter, string partitionKey = null) where TDocument : IDocument
|
|
{
|
|
return (await HandlePartitioned<TDocument>(partitionKey).DeleteOneAsync(filter)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes the documents matching the condition of the LINQ expression filter.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteManyAsync<TDocument>(Expression<Func<TDocument, bool>> filter, string partitionKey = null) where TDocument : IDocument
|
|
{
|
|
return (await HandlePartitioned<TDocument>(partitionKey).DeleteManyAsync(filter)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a list of documents.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documents">The list of documents to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteManyAsync<TDocument>(IEnumerable<TDocument> documents) where TDocument : IDocument
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return 0;
|
|
}
|
|
var idsTodelete = documents.Select(e => e.Id).ToArray();
|
|
return (await HandlePartitioned(documents.FirstOrDefault()).DeleteManyAsync(x => idsTodelete.Contains(x.Id))).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a list of documents.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="documents">The list of documents to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteMany<TDocument>(IEnumerable<TDocument> documents) where TDocument : IDocument
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return 0;
|
|
}
|
|
var idsTodelete = documents.Select(e => e.Id).ToArray();
|
|
return HandlePartitioned(documents.FirstOrDefault()).DeleteMany(x => idsTodelete.Contains(x.Id)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the documents matching the condition of the LINQ expression filter.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteMany<TDocument>(Expression<Func<TDocument, bool>> filter, string partitionKey = null) where TDocument : IDocument
|
|
{
|
|
return HandlePartitioned<TDocument>(partitionKey).DeleteMany(filter).DeletedCount;
|
|
}
|
|
|
|
#endregion Delete
|
|
|
|
#region Delete TKey
|
|
|
|
/// <summary>
|
|
/// Deletes 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="document">The document you want to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteOne<TDocument, TKey>(TDocument document)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", document.Id);
|
|
return HandlePartitioned<TDocument, TKey>(document).DeleteOne(filter).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
|
|
/// </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="document">The document you want to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteOneAsync<TDocument, TKey>(TDocument document)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
var filter = Builders<TDocument>.Filter.Eq("Id", document.Id);
|
|
return (await HandlePartitioned<TDocument, TKey>(document).DeleteOneAsync(filter)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a document matching the condition of the LINQ expression filter.
|
|
/// </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="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteOne<TDocument, TKey>(Expression<Func<TDocument, bool>> filter, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return HandlePartitioned<TDocument, TKey>(partitionKey).DeleteOne(filter).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
|
|
/// </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="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteOneAsync<TDocument, TKey>(Expression<Func<TDocument, bool>> filter, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return (await HandlePartitioned<TDocument, TKey>(partitionKey).DeleteOneAsync(filter)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes the documents matching the condition of the LINQ expression filter.
|
|
/// </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="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteManyAsync<TDocument, TKey>(Expression<Func<TDocument, bool>> filter, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return (await HandlePartitioned<TDocument, TKey>(partitionKey).DeleteManyAsync(filter)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously deletes a list of documents.
|
|
/// </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="documents">The list of documents to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public async Task<long> DeleteManyAsync<TDocument, TKey>(IEnumerable<TDocument> documents)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return 0;
|
|
}
|
|
var idsTodelete = documents.Select(e => e.Id).ToArray();
|
|
return (await HandlePartitioned<TDocument, TKey>(documents.FirstOrDefault()).DeleteManyAsync(x => idsTodelete.Contains(x.Id))).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a list of documents.
|
|
/// </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="documents">The list of documents to delete.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteMany<TDocument, TKey>(IEnumerable<TDocument> documents)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
if (!documents.Any())
|
|
{
|
|
return 0;
|
|
}
|
|
var idsTodelete = documents.Select(e => e.Id).ToArray();
|
|
return HandlePartitioned<TDocument, TKey>(documents.FirstOrDefault()).DeleteMany(x => idsTodelete.Contains(x.Id)).DeletedCount;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the documents matching the condition of the LINQ expression filter.
|
|
/// </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="filter">A LINQ expression filter.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
/// <returns>The number of documents deleted.</returns>
|
|
public long DeleteMany<TDocument, TKey>(Expression<Func<TDocument, bool>> filter, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return HandlePartitioned<TDocument, TKey>(partitionKey).DeleteMany(filter).DeletedCount;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Project
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a projected document matching the filter condition.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<TProjection> ProjectOneAsync<TDocument, TProjection>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class
|
|
{
|
|
return await HandlePartitioned<TDocument>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.FirstOrDefaultAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a projected document matching the filter condition.
|
|
/// </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="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<TProjection> ProjectOneAsync<TDocument, TProjection, TKey>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
where TProjection : class
|
|
{
|
|
return await HandlePartitioned<TDocument, TKey>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.FirstOrDefaultAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a projected document matching the filter condition.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public TProjection ProjectOne<TDocument, TProjection>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class
|
|
{
|
|
return HandlePartitioned<TDocument>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.FirstOrDefault();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a projected document matching the filter condition.
|
|
/// </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="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public TProjection ProjectOne<TDocument, TProjection, TKey>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
where TProjection : class
|
|
{
|
|
return HandlePartitioned<TDocument, TKey>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.FirstOrDefault();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a list of projected documents matching the filter condition.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<List<TProjection>> ProjectManyAsync<TDocument, TProjection>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class
|
|
{
|
|
return await HandlePartitioned<TDocument>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.ToListAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a list of projected documents matching the filter condition.
|
|
/// </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="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<List<TProjection>> ProjectManyAsync<TDocument, TProjection, TKey>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
where TProjection : class
|
|
{
|
|
return await HandlePartitioned<TDocument, TKey>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.ToListAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a list of projected documents matching the filter condition.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public List<TProjection> ProjectMany<TDocument, TProjection>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class
|
|
{
|
|
return HandlePartitioned<TDocument>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a list of projected documents matching the filter condition.
|
|
/// </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="TProjection">The type representing the model you want to project to.</typeparam>
|
|
/// <param name="filter">The document filter.</param>
|
|
/// <param name="projection">The projection expression.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public List<TProjection> ProjectMany<TDocument, TProjection, TKey>(Expression<Func<TDocument, bool>> filter, Expression<Func<TDocument, TProjection>> projection, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
where TProjection : class
|
|
{
|
|
return HandlePartitioned<TDocument, TKey>(partitionKey).Find(filter)
|
|
.Project(projection)
|
|
.ToList();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Grouping
|
|
|
|
/// <summary>
|
|
/// Groups a collection of documents given a grouping criteria,
|
|
/// and returns a dictionary of listed document groups with keys having the different values of the grouping criteria.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TGroupKey">The type of the grouping criteria.</typeparam>
|
|
/// <typeparam name="TProjection">The type of the projected group.</typeparam>
|
|
/// <param name="groupingCriteria">The grouping criteria.</param>
|
|
/// <param name="groupProjection">The projected group result.</param>
|
|
/// <param name="partitionKey">The partition key of your document, if any.</param>
|
|
public List<TProjection> GroupBy<TDocument, TGroupKey, TProjection>(
|
|
Expression<Func<TDocument, TGroupKey>> groupingCriteria,
|
|
Expression<Func<IGrouping<TGroupKey, TDocument>, TProjection>> groupProjection,
|
|
string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class, new()
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument>() : GetCollection<TDocument>(partitionKey);
|
|
return collection.Aggregate()
|
|
.Group(groupingCriteria, groupProjection)
|
|
.ToList();
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Groups filtered a collection of documents given a grouping criteria,
|
|
/// and returns a dictionary of listed document groups with keys having the different values of the grouping criteria.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <typeparam name="TGroupKey">The type of the grouping criteria.</typeparam>
|
|
/// <typeparam name="TProjection">The type of the projected group.</typeparam>
|
|
/// <param name="groupingCriteria">The grouping criteria.</param>
|
|
/// <param name="groupProjection">The projected group result.</param>
|
|
/// <param name="partitionKey">The partition key of your document, if any.</param>
|
|
/// <returns></returns>
|
|
public List<TProjection> GroupBy<TDocument, TGroupKey, TProjection>(Expression<Func<TDocument, bool>> filter,
|
|
Expression<Func<TDocument, TGroupKey>> selector,
|
|
Expression<Func<IGrouping<TGroupKey, TDocument>, TProjection>> projection,
|
|
string partitionKey = null)
|
|
where TDocument : IDocument
|
|
where TProjection : class, new()
|
|
{
|
|
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection<TDocument>() : GetCollection<TDocument>(partitionKey);
|
|
return collection.Aggregate()
|
|
.Match(Builders<TDocument>.Filter.Where(filter))
|
|
.Group(selector, projection)
|
|
.ToList();
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a paginated list of the documents matching the filter condition.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="skipNumber">The number of documents you want to skip. Default value is 0.</param>
|
|
/// <param name="takeNumber">The number of documents you want to take. Default value is 50.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<List<TDocument>> GetPaginatedAsync<TDocument>(Expression<Func<TDocument, bool>> filter, int skipNumber = 0, int takeNumber = 50, string partitionKey = null)
|
|
where TDocument : IDocument
|
|
{
|
|
return await HandlePartitioned<TDocument>(partitionKey).Find(filter).Skip(skipNumber).Limit(takeNumber).ToListAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Asynchronously returns a paginated list of the documents matching the filter condition.
|
|
/// </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="filter"></param>
|
|
/// <param name="skipNumber">The number of documents you want to skip. Default value is 0.</param>
|
|
/// <param name="takeNumber">The number of documents you want to take. Default value is 50.</param>
|
|
/// <param name="partitionKey">An optional partition key.</param>
|
|
public async Task<List<TDocument>> GetPaginatedAsync<TDocument, TKey>(Expression<Func<TDocument, bool>> filter, int skipNumber = 0, int takeNumber = 50, string partitionKey = null)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return await HandlePartitioned<TDocument, TKey>(partitionKey).Find(filter).Skip(skipNumber).Limit(takeNumber).ToListAsync();
|
|
}
|
|
|
|
#region Find And Update
|
|
|
|
/// <summary>
|
|
/// GetAndUpdateOne with filter
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The type representing a Document.</typeparam>
|
|
/// <param name="filter"></param>
|
|
/// <param name="update"></param>
|
|
/// <param name="options"></param>
|
|
/// <returns></returns>
|
|
public async Task<TDocument> GetAndUpdateOne<TDocument>(FilterDefinition<TDocument> filter, UpdateDefinition<TDocument> update, FindOneAndUpdateOptions<TDocument, TDocument> options) where TDocument : IDocument
|
|
{
|
|
return await GetCollection<TDocument>().FindOneAndUpdateAsync(filter, update, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// GetAndUpdateOne with filter
|
|
/// </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="filter"></param>
|
|
/// <param name="update"></param>
|
|
/// <param name="options"></param>
|
|
/// <returns></returns>
|
|
public async Task<TDocument> GetAndUpdateOne<TDocument, TKey>(FilterDefinition<TDocument> filter, UpdateDefinition<TDocument> update, FindOneAndUpdateOptions<TDocument, TDocument> options)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
return await GetCollection<TDocument, TKey>().FindOneAndUpdateAsync(filter, update, options);
|
|
}
|
|
|
|
#endregion Find And Update
|
|
|
|
|
|
private TKey SetIdField<TKey>()
|
|
{
|
|
var idTypeName = typeof(TKey).Name;
|
|
switch (idTypeName)
|
|
{
|
|
case "Guid":
|
|
return (TKey)(object)Guid.NewGuid();
|
|
case "Int16":
|
|
return (TKey)(object)Random.Next(1, short.MaxValue);
|
|
case "Int32":
|
|
return (TKey)(object)Random.Next(1, int.MaxValue);
|
|
case "Int64":
|
|
return (TKey)(object)(Random.NextLong(1, long.MaxValue));
|
|
case "String":
|
|
return (TKey)(object)Guid.NewGuid().ToString();
|
|
}
|
|
throw new ArgumentException($"{idTypeName} is not a supported Id type, the Id of the document cannot be set.");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the value of the document Id if it is not set already.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The document type.</typeparam>
|
|
/// <typeparam name="TKey">The type of the primary key.</typeparam>
|
|
/// <param name="document">The document.</param>
|
|
protected void FormatDocument<TDocument, TKey>(TDocument document)
|
|
where TDocument : IDocument<TKey>
|
|
where TKey : IEquatable<TKey>
|
|
{
|
|
if (document == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(document));
|
|
}
|
|
var defaultTKey = default(TKey);
|
|
if (document.Id == null
|
|
|| (defaultTKey != null
|
|
&& defaultTKey.Equals(document.Id)))
|
|
{
|
|
document.Id = SetIdField<TKey>();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the value of the document Id if it is not set already.
|
|
/// </summary>
|
|
/// <typeparam name="TDocument">The document type.</typeparam>
|
|
/// <param name="document">The document.</param>
|
|
protected void FormatDocument<TDocument>(TDocument document) where TDocument : IDocument
|
|
{
|
|
if (document == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(document));
|
|
}
|
|
if (document.Id == default(Guid))
|
|
{
|
|
document.Id = Guid.NewGuid();
|
|
}
|
|
}
|
|
}
|
|
} |