Files
ersatztv/ErsatzTV.Application/Resolutions/Queries/GetAllResolutionsHandler.cs
T
Jason DoveandGitHub a9c93ff498 add custom resolution management (#1326)
* update some dependencies

* add custom resolution management
2023-06-25 09:14:19 -05:00

24 lines
937 B
C#

using ErsatzTV.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using static ErsatzTV.Application.Resolutions.Mapper;
namespace ErsatzTV.Application.Resolutions;
public class GetAllResolutionsHandler : IRequestHandler<GetAllResolutions, List<ResolutionViewModel>>
{
private readonly IDbContextFactory<TvContext> _dbContextFactory;
public GetAllResolutionsHandler(IDbContextFactory<TvContext> dbContextFactory) =>
_dbContextFactory = dbContextFactory;
public async Task<List<ResolutionViewModel>> Handle(
GetAllResolutions request,
CancellationToken cancellationToken)
{
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
return await dbContext.Resolutions
.ToListAsync(cancellationToken)
.Map(list => list.OrderBy(r => r.Width).ThenBy(r => r.Height).Map(ProjectToViewModel).ToList());
}
}