при конфигурации отладки используется строка подключения к pg с более подробными ошибками.

This commit is contained in:
ngfrolov 2022-09-28 14:51:47 +05:00
parent 8a7e2872ee
commit 90026f95d3

View File

@ -82,8 +82,12 @@ namespace AsbCloudInfrastructure
public static IServiceCollection AddInfrastructure(this IServiceCollection services, IConfiguration configuration)
{
MapsterSetup();
var connectionStringName = "DefaultConnection";
#if DEBUG
connectionStringName = "DebugConnection";
#endif
services.AddDbContext<AsbCloudDbContext>(options =>
options.UseNpgsql(configuration.GetConnectionString("DefaultConnection")));
options.UseNpgsql(configuration.GetConnectionString(connectionStringName)));
services.AddFluentValidation();