From e761fbd1cabe1097547cbfe084d45cf853e6d09f Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 25 Mar 2026 13:30:12 +0100 Subject: [PATCH] Add DbModel config to Rec services setup Added options.ConfigureDbModel to the AddRecServices configuration, enabling Rec services to use settings from the "DbModel" section of the app configuration for enhanced database model customization. --- tests/ReC.Tests/Application/RecApplicationTestBase.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ReC.Tests/Application/RecApplicationTestBase.cs b/tests/ReC.Tests/Application/RecApplicationTestBase.cs index abc4c47..8ba0099 100644 --- a/tests/ReC.Tests/Application/RecApplicationTestBase.cs +++ b/tests/ReC.Tests/Application/RecApplicationTestBase.cs @@ -41,6 +41,7 @@ public abstract class RecApplicationTestBase : IDisposable options.LuckyPennySoftwareLicenseKey = configuration["LuckyPennySoftwareLicenseKey"]; options.ConfigureRecActions(configuration.GetSection("RecAction")); options.ConfigureSqlException(configuration.GetSection("SqlException")); + options.ConfigureDbModel(configuration.GetSection("DbModel")); }); services.AddRecInfrastructure(opt =>