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
{
///
/// 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.
///
public abstract class BaseMongoRepository : ReadOnlyMongoRepository, IBaseMongoRepository
{
///
/// The constructor taking a connection string and a database name.
///
/// The connection string of the MongoDb server.
/// The name of the database against which you want to perform operations.
protected BaseMongoRepository(string connectionString, string databaseName) : base(connectionString, databaseName)
{
MongoDbContext = new MongoDbContext(connectionString, databaseName);
}
///
/// The contructor taking a .
///
/// A mongodb context implementing
protected BaseMongoRepository(IMongoDbContext mongoDbContext) : base(mongoDbContext)
{
MongoDbContext = mongoDbContext;
}
///
/// The contructor taking a .
///
/// A mongodb context implementing
protected BaseMongoRepository(IMongoDatabase mongoDatabase) : base(mongoDatabase)
{
MongoDbContext = new MongoDbContext(mongoDatabase);
}
#region Create
///
/// Asynchronously adds a document to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The document you want to add.
public virtual async Task AddOneAsync(TDocument document) where TDocument : IDocument
{
FormatDocument(document);
await HandlePartitioned(document).InsertOneAsync(document);
}
///
/// Adds a document to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The document you want to add.
public virtual void AddOne(TDocument document) where TDocument : IDocument
{
FormatDocument(document);
HandlePartitioned(document).InsertOne(document);
}
///
/// Asynchronously adds a list of documents to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The documents you want to add.
public virtual async Task AddManyAsync(IEnumerable documents) where TDocument : IDocument
{
if (!documents.Any())
{
return;
}
foreach (var document in documents)
{
FormatDocument(document);
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
await HandlePartitioned(group.FirstOrDefault()).InsertManyAsync(group.ToList());
}
}
else
{
await GetCollection().InsertManyAsync(documents.ToList());
}
}
///
/// Adds a list of documents to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The documents you want to add.
public virtual void AddMany(IEnumerable documents) where TDocument : IDocument
{
if (!documents.Any())
{
return;
}
foreach (var document in documents)
{
FormatDocument(document);
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
HandlePartitioned(group.FirstOrDefault()).InsertMany(group.ToList());
}
}
else
{
GetCollection().InsertMany(documents.ToList());
}
}
#endregion Create
#region Create TKey
///
/// Asynchronously adds a document to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to add.
public virtual async Task AddOneAsync(TDocument document)
where TDocument : IDocument
where TKey : IEquatable
{
FormatDocument(document);
await HandlePartitioned(document).InsertOneAsync(document);
}
///
/// Adds a document to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to add.
public virtual void AddOne(TDocument document)
where TDocument : IDocument
where TKey : IEquatable
{
FormatDocument(document);
HandlePartitioned(document).InsertOne(document);
}
///
/// Asynchronously adds a list of documents to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The documents you want to add.
public virtual async Task AddManyAsync(IEnumerable documents)
where TDocument : IDocument
where TKey : IEquatable
{
if (!documents.Any())
{
return;
}
foreach (var document in documents)
{
FormatDocument(document);
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
await HandlePartitioned(group.FirstOrDefault()).InsertManyAsync(group.ToList());
}
}
else
{
await GetCollection().InsertManyAsync(documents.ToList());
}
}
///
/// Adds a list of documents to the collection.
/// Populates the Id and AddedAtUtc fields if necessary.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The documents you want to add.
public virtual void AddMany(IEnumerable documents)
where TDocument : IDocument
where TKey : IEquatable
{
if (!documents.Any())
{
return;
}
foreach (var document in documents)
{
FormatDocument(document);
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
HandlePartitioned(group.FirstOrDefault()).InsertMany(group.ToList());
}
}
else
{
GetCollection().InsertMany(documents.ToList());
}
}
#endregion
#region Update
///
/// Asynchronously Updates a document.
///
/// The type representing a Document.
/// The document with the modifications you want to persist.
public virtual async Task UpdateOneAsync(TDocument modifiedDocument) where TDocument : IDocument
{
var updateRes = await HandlePartitioned(modifiedDocument).ReplaceOneAsync(x => x.Id == modifiedDocument.Id, modifiedDocument);
return updateRes.ModifiedCount == 1;
}
///
/// Updates a document.
///
/// The type representing a Document.
/// The document with the modifications you want to persist.
public virtual bool UpdateOne(TDocument modifiedDocument) where TDocument : IDocument
{
var updateRes = HandlePartitioned(modifiedDocument).ReplaceOne(x => x.Id == modifiedDocument.Id, modifiedDocument);
return updateRes.ModifiedCount == 1;
}
///
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
///
/// The type representing a Document.
/// The document you want to modify.
/// The update definition for the document.
public virtual async Task UpdateOneAsync(TDocument documentToModify, UpdateDefinition update)
where TDocument : IDocument
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, update);
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the field.
/// The document you want to modify.
/// The field selector.
/// The new value of the property field.
public virtual bool UpdateOne(TDocument documentToModify, Expression> field, TField value)
where TDocument : IDocument
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = HandlePartitioned(documentToModify).UpdateOne(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the field.
/// The document you want to modify.
/// The field selector.
/// The new value of the property field.
public virtual async Task UpdateOneAsync(TDocument documentToModify, Expression> field, TField value)
where TDocument : IDocument
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The value of the partition key.
public virtual bool UpdateOne(FilterDefinition filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = collection.UpdateOne(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// For the entity selected by the filter, updates the property field with the given value.
///
/// The type representing a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The partition key for the document.
public virtual bool UpdateOne(Expression> filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = collection.UpdateOne(Builders.Filter.Where(filter), Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The value of the partition key.
public virtual async Task UpdateOneAsync(FilterDefinition filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = await collection.UpdateOneAsync(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// For the entity selected by the filter, updates the property field with the given value.
///
/// The type representing a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The partition key for the document.
public virtual async Task UpdateOneAsync(Expression> filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = await collection.UpdateOneAsync(Builders.Filter.Where(filter), Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
///
/// The type representing a Document.
/// The document you want to modify.
/// The update definition for the document.
public virtual bool UpdateOne(TDocument documentToModify, UpdateDefinition update)
where TDocument : IDocument
{
var filter = Builders.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
///
/// Asynchronously Updates a document.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document with the modifications you want to persist.
public virtual async Task UpdateOneAsync(TDocument modifiedDocument)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", modifiedDocument.Id);
var updateRes = await HandlePartitioned(modifiedDocument).ReplaceOneAsync(filter, modifiedDocument);
return updateRes.ModifiedCount == 1;
}
///
/// Updates a document.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document with the modifications you want to persist.
public virtual bool UpdateOne(TDocument modifiedDocument)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", modifiedDocument.Id);
var updateRes = HandlePartitioned(modifiedDocument).ReplaceOne(filter, modifiedDocument);
return updateRes.ModifiedCount == 1;
}
///
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to modify.
/// The update definition for the document.
public virtual async Task UpdateOneAsync(TDocument documentToModify, UpdateDefinition update)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, update, new UpdateOptions { IsUpsert = true });
return updateRes.ModifiedCount == 1;
}
///
/// Takes a document you want to modify and applies the update you have defined in MongoDb.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to modify.
/// The update definition for the document.
public virtual bool UpdateOne(TDocument documentToModify, UpdateDefinition update)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = HandlePartitioned(documentToModify).UpdateOne(filter, update, new UpdateOptions { IsUpsert = true });
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document you want to modify.
/// The field selector.
/// The new value of the property field.
public virtual async Task UpdateOneAsync(TDocument documentToModify, Expression> field, TField value)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = await HandlePartitioned(documentToModify).UpdateOneAsync(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document you want to modify.
/// The field selector.
/// The new value of the property field.
public virtual bool UpdateOne(TDocument documentToModify, Expression> field, TField value)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", documentToModify.Id);
var updateRes = HandlePartitioned(documentToModify).UpdateOne(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// Updates the property field with the given value update a property field in entities.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The value of the partition key.
public virtual async Task UpdateOneAsync(FilterDefinition filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = await collection.UpdateOneAsync(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// For the entity selected by the filter, updates the property field with the given value.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The partition key for the document.
public virtual async Task UpdateOneAsync(Expression> filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return await UpdateOneAsync(Builders.Filter.Where(filter), field, value, partitionKey);
}
///
/// Updates the property field with the given value.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The value of the partition key.
public virtual bool UpdateOne(FilterDefinition filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
var collection = string.IsNullOrEmpty(partitionKey) ? GetCollection() : GetCollection(partitionKey);
var updateRes = collection.UpdateOne(filter, Builders.Update.Set(field, value));
return updateRes.ModifiedCount == 1;
}
///
/// For the entity selected by the filter, updates the property field with the given value.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type of the field.
/// The document filter.
/// The field selector.
/// The new value of the property field.
/// The partition key for the document.
public virtual bool UpdateOne(Expression> filter, Expression> field, TField value, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return UpdateOne(Builders.Filter.Where(filter), field, value, partitionKey);
}
#endregion Update
#region Delete
///
/// Asynchronously deletes a document.
///
/// The type representing a Document.
/// The document you want to delete.
/// The number of documents deleted.
public virtual async Task DeleteOneAsync(TDocument document) where TDocument : IDocument
{
return await DeleteOneAsync(document);
}
///
/// Deletes a document.
///
/// The type representing a Document.
/// The document you want to delete.
/// The number of documents deleted.
public virtual long DeleteOne(TDocument document) where TDocument : IDocument
{
return DeleteOne(document);
}
///
/// Deletes a document matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual long DeleteOne(Expression> filter, string partitionKey = null) where TDocument : IDocument
{
return DeleteOne(filter, partitionKey);
}
///
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual async Task DeleteOneAsync(Expression> filter, string partitionKey = null) where TDocument : IDocument
{
return await DeleteOneAsync(filter, partitionKey);
}
///
/// Asynchronously deletes the documents matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual async Task DeleteManyAsync(Expression> filter, string partitionKey = null) where TDocument : IDocument
{
return (await HandlePartitioned(partitionKey).DeleteManyAsync(filter)).DeletedCount;
}
///
/// Asynchronously deletes a list of documents.
///
/// The type representing a Document.
/// The list of documents to delete.
/// The number of documents deleted.
public virtual async Task DeleteManyAsync(IEnumerable documents) where TDocument : IDocument
{
return await DeleteManyAsync(documents);
}
///
/// Deletes a list of documents.
///
/// The type representing a Document.
/// The list of documents to delete.
/// The number of documents deleted.
public virtual long DeleteMany(IEnumerable documents) where TDocument : IDocument
{
return DeleteMany(documents);
}
///
/// Deletes the documents matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual long DeleteMany(Expression> filter, string partitionKey = null) where TDocument : IDocument
{
return HandlePartitioned(partitionKey).DeleteMany(filter).DeletedCount;
}
#endregion Delete
#region Delete TKey
///
/// Deletes a document.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to delete.
/// The number of documents deleted.
public virtual long DeleteOne(TDocument document)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", document.Id);
return HandlePartitioned(document).DeleteOne(filter).DeletedCount;
}
///
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The document you want to delete.
/// The number of documents deleted.
public virtual async Task DeleteOneAsync(TDocument document)
where TDocument : IDocument
where TKey : IEquatable
{
var filter = Builders.Filter.Eq("Id", document.Id);
return (await HandlePartitioned(document).DeleteOneAsync(filter)).DeletedCount;
}
///
/// Deletes a document matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual long DeleteOne(Expression> filter, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return HandlePartitioned(partitionKey).DeleteOne(filter).DeletedCount;
}
///
/// Asynchronously deletes a document matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual async Task DeleteOneAsync(Expression> filter, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return (await HandlePartitioned(partitionKey).DeleteOneAsync(filter)).DeletedCount;
}
///
/// Asynchronously deletes the documents matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual async Task DeleteManyAsync(Expression> filter, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return (await HandlePartitioned(partitionKey).DeleteManyAsync(filter)).DeletedCount;
}
///
/// Asynchronously deletes a list of documents.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The list of documents to delete.
/// The number of documents deleted.
public virtual async Task DeleteManyAsync(IEnumerable documents)
where TDocument : IDocument
where TKey : IEquatable
{
if (!documents.Any())
{
return 0;
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
long deleteCount = 0;
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
var groupIdsTodelete = group.Select(e => e.Id).ToArray();
deleteCount += (await HandlePartitioned(group.FirstOrDefault()).DeleteManyAsync(x => groupIdsTodelete.Contains(x.Id))).DeletedCount;
}
return deleteCount;
}
else
{
var idsTodelete = documents.Select(e => e.Id).ToArray();
return (await HandlePartitioned(documents.FirstOrDefault()).DeleteManyAsync(x => idsTodelete.Contains(x.Id))).DeletedCount;
}
}
///
/// Deletes a list of documents.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The list of documents to delete.
/// The number of documents deleted.
public virtual long DeleteMany(IEnumerable documents)
where TDocument : IDocument
where TKey : IEquatable
{
if (!documents.Any())
{
return 0;
}
// cannot use typeof(IPartitionedDocument).IsAssignableFrom(typeof(TDocument)), not available in netstandard 1.5
if (documents.Any(e => e is IPartitionedDocument))
{
long deleteCount = 0;
foreach (var group in documents.GroupBy(e => ((IPartitionedDocument)e).PartitionKey))
{
var groupIdsTodelete = group.Select(e => e.Id).ToArray();
deleteCount += (HandlePartitioned(group.FirstOrDefault()).DeleteMany(x => groupIdsTodelete.Contains(x.Id))).DeletedCount;
}
return deleteCount;
}
else
{
var idsTodelete = documents.Select(e => e.Id).ToArray();
return (HandlePartitioned(documents.FirstOrDefault()).DeleteMany(x => idsTodelete.Contains(x.Id))).DeletedCount;
}
}
///
/// Deletes the documents matching the condition of the LINQ expression filter.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// A LINQ expression filter.
/// An optional partition key.
/// The number of documents deleted.
public virtual long DeleteMany(Expression> filter, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
{
return HandlePartitioned(partitionKey).DeleteMany(filter).DeletedCount;
}
#endregion
#region Project
///
/// Asynchronously returns a projected document matching the filter condition.
///
/// The type representing a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual async Task ProjectOneAsync(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TProjection : class
{
return await HandlePartitioned(partitionKey).Find(filter)
.Project(projection)
.FirstOrDefaultAsync();
}
///
/// Asynchronously returns a projected document matching the filter condition.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual async Task ProjectOneAsync(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
where TProjection : class
{
return await HandlePartitioned(partitionKey).Find(filter)
.Project(projection)
.FirstOrDefaultAsync();
}
///
/// Returns a projected document matching the filter condition.
///
/// The type representing a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual TProjection ProjectOne(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TProjection : class
{
return HandlePartitioned(partitionKey).Find(filter)
.Project(projection)
.FirstOrDefault();
}
///
/// Returns a projected document matching the filter condition.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual TProjection ProjectOne(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable
where TProjection : class
{
return HandlePartitioned(partitionKey).Find(filter)
.Project(projection)
.FirstOrDefault();
}
///
/// Asynchronously returns a list of projected documents matching the filter condition.
///
/// The type representing a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual async Task> ProjectManyAsync(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TProjection : class
{
return await HandlePartitioned(partitionKey).Find(filter)
.Project(projection)
.ToListAsync();
}
///
/// Asynchronously returns a list of projected documents matching the filter condition.
///
/// The type representing a Document.
/// The type of the primary key for a Document.
/// The type representing the model you want to project to.
///
/// The projection expression.
/// An optional partition key.
public virtual async Task> ProjectManyAsync(Expression> filter, Expression> projection, string partitionKey = null)
where TDocument : IDocument
where TKey : IEquatable