docker files fixes from liaqat
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
using Managing.Infrastructure.Databases.MongoDb.Configurations;
|
||||
using MongoDB.Driver;
|
||||
using System.Linq.Expressions;
|
||||
|
||||
namespace Managing.Infrastructure.Databases.MongoDb.Abstractions
|
||||
{
|
||||
public interface IMongoRepository<TDocument> where TDocument : IDocument
|
||||
{
|
||||
IQueryable<TDocument> AsQueryable();
|
||||
|
||||
IEnumerable<TDocument> FilterBy(
|
||||
Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
IEnumerable<TDocument> FindAll();
|
||||
IEnumerable<TDocument> FilterBy(FilterDefinition<TDocument> filter);
|
||||
|
||||
IEnumerable<TProjected> FilterBy<TProjected>(
|
||||
Expression<Func<TDocument, bool>> filterExpression,
|
||||
Expression<Func<TDocument, TProjected>> projectionExpression);
|
||||
|
||||
TDocument FindOne(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
Task<TDocument> FindOneAsync(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
TDocument FindById(string id);
|
||||
|
||||
Task<TDocument> FindByIdAsync(string id);
|
||||
|
||||
void InsertOne(TDocument document);
|
||||
|
||||
Task InsertOneAsync(TDocument document);
|
||||
|
||||
void InsertMany(ICollection<TDocument> documents);
|
||||
|
||||
Task InsertManyAsync(ICollection<TDocument> documents);
|
||||
|
||||
void ReplaceOne(TDocument document);
|
||||
|
||||
Task ReplaceOneAsync(TDocument document);
|
||||
|
||||
void DeleteOne(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
Task DeleteOneAsync(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
void DeleteById(string id);
|
||||
|
||||
Task DeleteByIdAsync(string id);
|
||||
|
||||
void DeleteMany(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
Task DeleteManyAsync(Expression<Func<TDocument, bool>> filterExpression);
|
||||
|
||||
void Update(TDocument entity);
|
||||
void CreateIndex(string column);
|
||||
void DropCollection();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user