DD.WellWorkover.Cloud/AsbCloudInfrastructure/Repository/CrudWellRelatedCacheRepositoryBase.cs

48 lines
1.5 KiB
C#
Raw Normal View History

using AsbCloudApp.Services;
using AsbCloudDb.Model;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Caching.Memory;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2024-08-19 10:01:07 +05:00
namespace AsbCloudInfrastructure.Repository;
2024-08-19 10:01:07 +05:00
public class CrudWellRelatedCacheRepositoryBase<TDto, TEntity> : CrudCacheRepositoryBase<TDto, TEntity>, IRepositoryWellRelated<TDto>
where TDto : AsbCloudApp.Data.IId, AsbCloudApp.Data.IWellRelated
where TEntity : class, IId, IWellRelated
{
public CrudWellRelatedCacheRepositoryBase(IAsbCloudDbContext context, IMemoryCache memoryCache)
: base(context, memoryCache) { }
public CrudWellRelatedCacheRepositoryBase(IAsbCloudDbContext context, IMemoryCache memoryCache, Func<DbSet<TEntity>, IQueryable<TEntity>> makeQuery)
: base(context, memoryCache, makeQuery) { }
2024-08-19 10:01:07 +05:00
public async Task<IEnumerable<TDto>> GetByIdWellAsync(int idWell, CancellationToken token)
{
var cache = await GetCacheAsync(token);
2024-08-19 10:01:07 +05:00
var dtos = cache
.Where(e => e.IdWell == idWell)
.Select(Convert);
2024-08-19 10:01:07 +05:00
return dtos;
}
2024-08-19 10:01:07 +05:00
public async Task<IEnumerable<TDto>> GetByIdWellAsync(IEnumerable<int> idsWells, CancellationToken token)
{
if (!idsWells.Any())
return Enumerable.Empty<TDto>();
2022-06-15 14:57:37 +05:00
2024-08-19 10:01:07 +05:00
var cache = await GetCacheAsync(token);
2024-08-19 10:01:07 +05:00
var dtos = cache
.Where(e => idsWells.Contains(e.IdWell))
.Select(Convert);
2024-08-19 10:01:07 +05:00
return dtos;
}
}