// WingsEmu
//
// Developed by NosWings Team
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
namespace PhoenixLib.DAL.EFCore.PGSQL
{
///
/// GenericAsyncMappedRepository is an asynchronous Data Access Object
///
///
///
///
[Obsolete("Use GenericMappedUuidRepository now")]
public class GenericOldMappedUuidRepository : IGenericAsyncUuidRepository
where TDto : class, IUuidDto, new()
where TEntity : class, IUuidEntity, new()
where TDbContext : DbContext
{
private readonly IDbContextFactory _contextFactory;
private readonly ILogger> _logger;
private readonly IMapper _mapper;
public GenericOldMappedUuidRepository(IDbContextFactory contextFactory, IMapper mapper, ILogger> logger)
{
_contextFactory = contextFactory;
_mapper = mapper;
_logger = logger;
}
public async Task> GetAllAsync()
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
List tmp = await context.Set().ToListAsync();
return _mapper.Map(tmp);
}
catch (Exception e)
{
_logger.LogError(e, "GetAllAsync");
throw;
}
}
public async Task GetByIdAsync(Guid id)
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
TEntity tmp = await context.Set().FirstOrDefaultAsync(s => s.Id == id);
return _mapper.Map(tmp);
}
catch (Exception e)
{
_logger.LogError(e, "GetByIdAsync");
throw;
}
}
public async Task> GetByIdsAsync(IEnumerable ids)
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
List tmp = await context.Set().Where(s => ids.Contains(s.Id)).ToListAsync();
return _mapper.Map(tmp);
}
catch (Exception e)
{
_logger.LogError(e, "GetByIdsAsync");
throw;
}
}
public async Task SaveAsync(TDto obj)
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
TEntity entity = _mapper.Map(obj);
await context.SingleMergeAsync(obj, operation =>
{
operation.InsertKeepIdentity = true;
operation.IsCheckConstraintOnInsertDisabled = false;
});
return _mapper.Map(entity);
}
catch (Exception e)
{
_logger.LogError(e, "SaveAsync");
throw;
}
}
public async Task> SaveAsync(IReadOnlyList objs)
{
try
{
var entities = new List(_mapper.Map(objs));
await using DbContext context = _contextFactory.CreateDbContext();
await context.BulkMergeAsync(entities, operation =>
{
operation.InsertKeepIdentity = true;
operation.IsCheckConstraintOnInsertDisabled = false;
});
return _mapper.Map(entities);
}
catch (Exception e)
{
_logger.LogError(e, $"SaveAsync<{typeof(TEntity).Name}>");
throw;
}
}
public async Task DeleteByIdAsync(Guid id)
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
TEntity entity = await context.FindAsync(id);
if (entity == null)
{
return;
}
context.Set().Remove(entity);
await context.SaveChangesAsync();
}
catch (Exception e)
{
_logger.LogError(e, "DeleteByIdAsync");
throw;
}
}
public async Task DeleteByIdsAsync(IEnumerable ids)
{
try
{
await using DbContext context = _contextFactory.CreateDbContext();
foreach (Guid id in ids)
{
TEntity entity = await context.FindAsync(id);
if (entity == null)
{
continue;
}
context.Set().Remove(entity);
}
await context.SaveChangesAsync();
}
catch (Exception e)
{
_logger.LogError(e, "DeleteByIdsAsync");
throw;
}
}
}
}