using System.Diagnostics.CodeAnalysis; using Microsoft.Extensions.Logging; using Quartz; namespace Application.Jobs; public class MaintainTenpoIdJob : IJob { private readonly ILogger logger; private readonly ICardDbContext cardDbContext; public static readonly JobKey KEY = new("MaintainTenpoIdJob"); public MaintainTenpoIdJob(ILogger logger, ICardDbContext cardDbContext) { this.logger = logger; this.cardDbContext = cardDbContext; } [SuppressMessage("ReSharper.DPA", "DPA0007: Large number of DB records", Justification = "All details might be read")] [SuppressMessage("ReSharper.DPA", "DPA0006: Large number of DB commands")] public async Task Execute(IJobExecutionContext context) { logger.LogInformation("Starting changing null values in card detail table"); var details = await cardDbContext.CardDetails.Where(detail => detail.LastPlayTenpoId == null || detail.LastPlayTenpoId == "GC local server").ToListAsync(); details.ForEach(detail => detail.LastPlayTenpoId="1337"); cardDbContext.CardDetails.UpdateRange(details); var count = await cardDbContext.SaveChangesAsync(new CancellationToken()); logger.LogInformation("Updated {Count} entries in card detail table", count); } }