“.NET Verwenden von AppSettings -Variablen” Code-Antworten

.NET Verwenden von AppSettings -Variablen

var connectionString = ConfigurationManager.ConnectionStrings["Default"].ConnectionString;
connectionString.Expand() // returns "server=db01.mycompany.com;uid=uid;pwd=pwd;Initial Catalog=master;"
Good Goose

.NET Verwenden von AppSettings -Variablen

<configuration>
    <appSettings>
        <add key="Domain" value="mycompany.com"/>
        <add key="ServerName" value="db01.{Domain}"/>
    </appSettings>
    <connectionStrings>
        <add name="Default" connectionString="server={ServerName};uid=uid;pwd=pwd;Initial Catalog=master;" provider="System.Data.SqlClient" />
    </connectionStrings>
</configuration>
Good Goose

Ähnliche Antworten wie “.NET Verwenden von AppSettings -Variablen”

Fragen ähnlich wie “.NET Verwenden von AppSettings -Variablen”

Weitere verwandte Antworten zu “.NET Verwenden von AppSettings -Variablen” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen