This commit is contained in:
Казначеева Елизавета 2024-03-27 08:53:00 +04:00
parent 9a7864ae4e
commit 69a9eab049
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace SoftwareInstallationDatabaseImplement
{
if (optionsBuilder.IsConfigured == false)
{
optionsBuilder.UseSqlServer(@"Data Source=WIN-45522256GVD;Initial Catalog=SoftwareInstallationDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
optionsBuilder.UseSqlServer(@"Data Source=WIN-45522256GVD\SQLEXPRESS;Initial Catalog=SoftwareInstallationDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
}
base.OnConfiguring(optionsBuilder);
}

View File

@ -4,7 +4,7 @@ using NLog.Extensions.Logging;
using SoftwareInstallationBusinessLogic.BusinessLogics;
using SoftwareInstallationContracts.BusinessLogicsContracts;
using SoftwareInstallationContracts.StoragesContracts;
using SoftwareInstallationFileImplement;
using SoftwareInstallationDatabaseImplement;
using SoftwareInstallationView;
namespace SoftwareInstallation