#nullable enable using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using UserService.DatabaseLayer.DataModels; namespace UserService.DatabaseLayer.Repository { public class BaseRepository where T : Node { protected readonly Func> Context; protected BaseRepository(Func> context) { Context = context; } public virtual async Task> GetAllAsync(Expression>? predicate = null, CancellationToken token = default) { await using var db = new UserServiceDbContext(); IQueryable queryable = Context(db).Include(x => x.Parent); if(queryable != null) queryable = queryable.Where(predicate); return await queryable.ToListAsync(token); } public async Task GetAsync(Expression> predicate, CancellationToken token = default) { await using var db = new UserServiceDbContext(); return await Context(db).FirstOrDefaultAsync(predicate, token); } public async Task AddAsync(T entity, CancellationToken token = default) { await using var db = new UserServiceDbContext(); await Context(db).AddAsync(@entity, token); await db.SaveChangesAsync(token); } public async Task UpdateAsync(T entity, CancellationToken token = default) { await using var db = new UserServiceDbContext(); Context(db).Update(entity); await db.SaveChangesAsync(token); } public async Task DeleteAsync(T entity, CancellationToken token = default) { await using var db = new UserServiceDbContext(); Context(db).Remove(entity); await db.SaveChangesAsync(token); } } }