From d351a3d5773320346d8459bb9cf8f62f24dbcfb7 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Thu, 21 May 2026 16:49:49 +0200 Subject: [PATCH] Update EcmContext connection string in appsettings.json The `ConnectionStrings` section in the `appsettings.json` file was updated. The `EcmContext` connection string, previously an empty string, was replaced with a connection string pointing to a SQL Server instance. The new connection string includes the server name, database name, user ID, password, and a flag to trust the server certificate. This change enables the application to connect to the specified SQL Server database. --- DXApp.TemplateKitProject/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DXApp.TemplateKitProject/appsettings.json b/DXApp.TemplateKitProject/appsettings.json index 4f0967f..93808b8 100644 --- a/DXApp.TemplateKitProject/appsettings.json +++ b/DXApp.TemplateKitProject/appsettings.json @@ -7,7 +7,7 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "EcmContext": "" + "EcmContext": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;TrustServerCertificate=True;" }, "PdfExtraction": { "OutputDirectory": "C:\\PdfExtractions"