using MongoDB.Driver; using ShoppingAssistantApi.Domain.Common; using ShoppingAssistantApi.Persistance.Database; using System.Linq.Expressions; namespace ShoppingAssistantApi.Persistance.Repositories; public abstract class BaseRepository where TEntity : EntityBase { protected MongoDbContext _db; protected IMongoCollection _collection; public BaseRepository(MongoDbContext db, string collectionName) { this._db = db; this._collection = _db.Db.GetCollection(collectionName); } public async Task AddAsync(TEntity entity, CancellationToken cancellationToken) { await this._collection.InsertOneAsync(entity, new InsertOneOptions(), cancellationToken); return entity; } public async Task> GetPageAsync(int pageNumber, int pageSize, CancellationToken cancellationToken) { return await this._collection.Find(Builders.Filter.Empty) .Skip((pageNumber - 1) * pageSize) .Limit(pageSize) .ToListAsync(cancellationToken); } public async Task> GetPageAsync(int pageNumber, int pageSize, Expression> predicate, CancellationToken cancellationToken) { return await this._collection.Find(predicate) .Skip((pageNumber - 1) * pageSize) .Limit(pageSize) .ToListAsync(cancellationToken); } public async Task GetTotalCountAsync() { return (int)(await this._collection.EstimatedDocumentCountAsync()); } public async Task GetCountAsync(Expression> predicate, CancellationToken cancellationToken) { return (int)(await this._collection.CountDocumentsAsync(predicate, cancellationToken: cancellationToken)); } public async Task ExistsAsync(Expression> predicate, CancellationToken cancellationToken) { return await this._collection.Find(predicate).AnyAsync(cancellationToken); } public async Task DeleteAsync(TEntity entity, CancellationToken cancellationToken) { var updateDefinition = Builders.Update .Set(e => e.IsDeleted, true) .Set(e => e.LastModifiedById, entity.LastModifiedById) .Set(e => e.LastModifiedDateUtc, entity.LastModifiedDateUtc); var options = new FindOneAndUpdateOptions { ReturnDocument = ReturnDocument.After }; return await this._collection.FindOneAndUpdateAsync( Builders.Filter.Eq(e => e.Id, entity.Id), updateDefinition, options, cancellationToken); } }