ошибка при подключении к одной из баз ( к другой все норм) rgumentNullException: Value cannot be null.
Parameter name: connectionString Вот строки подключения "ConnectionStrings": {
"LibraryConnection": "Server=(localdb)\\MSSQLLocalDB;Database=Library_Dev;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"SportStoreIdentity": {
"IdentityConnection": "Server=(localdb)\\MSSQLLocalDB;Database=Identity;Trusted_Connection=True;MultipleActiveResultSets=true"
} Вот тут файл конфига services.AddDbContext<AppIdentityDbContext>(options=>options.UseSqlServer(Configuration.GetConnectionString("IdentityConnection")));
services.AddDbContext<ApplicationDbContext>(options =>options.UseSqlServer(Configuration.GetConnectionString("LibraryConnection"))); Ругается именно на IdentityConnection
потому что он в конфиге внутри SportStoreIdentity, либо юзай полный путь к строке подключения, либо вытаскивай её на уровень выше по аналогии с LibraryConnection
Обсуждают сегодня