using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using ErsatzTV.Infrastructure.Data; using LanguageExt; using MediatR; using Microsoft.EntityFrameworkCore; using static ErsatzTV.Application.MediaCollections.Mapper; namespace ErsatzTV.Application.MediaCollections.Queries { public class GetAllMultiCollectionsHandler : IRequestHandler> { private readonly IDbContextFactory _dbContextFactory; public GetAllMultiCollectionsHandler(IDbContextFactory dbContextFactory) => _dbContextFactory = dbContextFactory; public async Task> Handle( GetAllMultiCollections request, CancellationToken cancellationToken) { await using TvContext dbContext = _dbContextFactory.CreateDbContext(); return await dbContext.MultiCollections .ToListAsync(cancellationToken) .Map(list => list.Map(ProjectToViewModel).ToList()); } } }