DbAccess.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using Microsoft.EntityFrameworkCore;
  2. using PCC2.AssemblyInject.Interfaces;
  3. using System.Runtime.CompilerServices;
  4. using PCC2.Data.Entity;
  5. using static Dapper.SqlMapper;
  6. namespace PCC2.Data;
  7. internal class DbAccess : IAssemblyInjectSingleton
  8. {
  9. public DbAccess(ILogger<DbAccess> logger)
  10. {
  11. logger.LogInformation($"Init: Create DbContext Instance...");
  12. using var db = new Pcc2DbContext();
  13. logger.LogInformation($"Init: Call CanConnect() ...");
  14. if (db.Database.CanConnect() == false)
  15. {
  16. logger.LogInformation($"Init: Creating Database...");
  17. db.Database.EnsureCreated();
  18. logger.LogInformation($"Creating Database: OK");
  19. }
  20. else
  21. {
  22. logger.LogInformation($"Init: OK");
  23. }
  24. }
  25. public static Pcc2DbContext GetDbContext() => new();
  26. public static SettingOnDb GetSettings() => new(GetDbContext());
  27. internal class SettingOnDb(Pcc2DbContext dbContext) : IDisposable, IAsyncDisposable
  28. {
  29. private readonly DbSet<Setting> Settings = dbContext.Settings;
  30. public void Dispose() => dbContext.Dispose();
  31. public async ValueTask DisposeAsync() => await dbContext.DisposeAsync();
  32. private string? GetValue([CallerMemberName] string key = "") => Settings.Where(p => p.Key == key).Select(p => p.Value).SingleOrDefault();
  33. private int? GetInt32Value([CallerMemberName] string key = "") => int.TryParse(GetValue(key), out var i32) ? i32 : null;
  34. private void SetValue(string? value, [CallerMemberName] string key = "")
  35. {
  36. var entity = new Setting { Key = key, Value = value };
  37. if (Settings.Any(p => p.Key == key)) dbContext.Attach(entity).Property(nameof(entity.Value)).IsModified = true;
  38. else Settings.Add(entity);
  39. dbContext.SaveChanges();
  40. }
  41. public string? ListenAddress { get => GetValue(); set => SetValue(value); }
  42. public int? ListenPort { get => GetInt32Value(); set => SetValue(value?.ToString()); }
  43. }
  44. }