From c82749bcbf7210b5828bd2ec0321a6f34c182fae Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 12 Jan 2026 14:25:15 +0100 Subject: [PATCH] Add TODO comment for appsettings.json config in DbContext A TODO comment was added above OnModelCreating in RecDbContext to note that configuration should be updated to use appsettings.json in the future. No functional changes were made. --- src/ReC.Infrastructure/RecDbContext.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ReC.Infrastructure/RecDbContext.cs b/src/ReC.Infrastructure/RecDbContext.cs index 41df179..df02646 100644 --- a/src/ReC.Infrastructure/RecDbContext.cs +++ b/src/ReC.Infrastructure/RecDbContext.cs @@ -34,6 +34,7 @@ public class RecDbContext(DbContextOptions options) : DbContext(op public DbSet RecResults { get; set; } + // TODO: Update to configure via appsettings.json protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder);