using ErsatzTV.Infrastructure.Data; using Microsoft.EntityFrameworkCore; using static ErsatzTV.Application.MediaCollections.Mapper; namespace ErsatzTV.Application.MediaCollections; public class GetAllCollectionsHandler : IRequestHandler> { private readonly IDbContextFactory _dbContextFactory; public GetAllCollectionsHandler(IDbContextFactory dbContextFactory) => _dbContextFactory = dbContextFactory; public async Task> Handle( GetAllCollections request, CancellationToken cancellationToken) { await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken); return await dbContext.Collections .ToListAsync(cancellationToken) .Map(list => list.Map(ProjectToViewModel).ToList()); } }