I need database connection string in two places in appsettings.json.
Is it possible to introduce common variable or json-path related references into json file to avoid potencial problems?
It would be lovely to have it without touching c# code.
{
...
"ConnectionStrings": {
"Default": "Host=localhost;Database=db;Port=5432;Username=postgres;Password=postgres"
},
"Nlog": {
"targets": {
"database": {
"type": "Database",
"dbProvider": "Npgsql.NpgsqlConnection, Npgsql",
"connectionString": "Host=localhost;Database=db;Port=5432;Username=postgres;Password=postgres",
...
}
}
...
}
NLog has the ability to lookup values in the appsettings.json. You can do it like this with
${configsetting}
:See also https://github.com/NLog/NLog/wiki/ConfigSetting-Layout-Renderer
No. There is no support for this. Two things, though:
While the data being provided in each case is the same, the two things are not the same. It's not a duplication when both just happen to be using the same data source, as that may just as well not be the case.
There's nothing magical about the
ConnectionStrings
section, except that it allows you to use theGetConnectionString
sugar. You could just as well do something like:Whether or not that's appropriate is a separate discussion. The point is that you don't have to have the value multiple times, if you're just dead set against it.