mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
using static ErsatzTV.Application.MediaCollections.Mapper; |
|
|
|
namespace ErsatzTV.Application.MediaCollections; |
|
|
|
public class GetMultiCollectionByIdHandler : IRequestHandler<GetMultiCollectionById, Option<MultiCollectionViewModel>> |
|
{ |
|
private readonly IDbContextFactory<TvContext> _dbContextFactory; |
|
|
|
public GetMultiCollectionByIdHandler(IDbContextFactory<TvContext> dbContextFactory) => |
|
_dbContextFactory = dbContextFactory; |
|
|
|
public async Task<Option<MultiCollectionViewModel>> Handle( |
|
GetMultiCollectionById request, |
|
CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = _dbContextFactory.CreateDbContext(); |
|
return await dbContext.MultiCollections |
|
.Include(mc => mc.MultiCollectionItems) |
|
.ThenInclude(mc => mc.Collection) |
|
.Include(mc => mc.MultiCollectionSmartItems) |
|
.ThenInclude(mc => mc.SmartCollection) |
|
.SelectOneAsync(c => c.Id, c => c.Id == request.Id) |
|
.MapT(ProjectToViewModel); |
|
} |
|
}
|
|
|