Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

.net using appsettings variables

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

.net using appsettings variables

<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>
Comment

.net 6 get appsettings value

1
2
3
4
5
6
7
8
9
10
11
12
// AppSettingsController.cs
[Route("appsettings")]
public class AppSettingsController : Controller
{
    ...
 
    [Route("first-way")]
    public IActionResult FirstWay()
    {
        return Content(_configuration.GetValue<string>("RoundTheCodeSync:Title"), "text/plain");
    }
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: c# list with only unique items 
Csharp :: c# only only 2 digits after decimal number double 
Csharp :: c# mapper.map 
Csharp :: c# String Uppercase and Lowercase method 
Csharp :: c# loop array back 
Csharp :: loop c# 
Csharp :: c# count items in listbox 
Csharp :: timespan format string c# 
Csharp :: populate combobox from array c# 
Csharp :: unity 2d platformer movement script rigidbody 
Csharp :: unity audio source playoneshot 
Csharp :: can lightning strike the same place twice 
Csharp :: width="331" height="331" 
Csharp :: how crate cron netapp 
Csharp :: .net directorysearcher get manager accountname 
Html :: html euro symbol 
Html :: htaccess remove .html 
Html :: how to center text in svg 
Html :: no follow no index 
Html :: how to run vscode as root 
Html :: email anchor tag 
Html :: a href email 
Html :: remove underline html 
Html :: how to automatically redirect in html 
Html :: html display only on mobile 
Html :: how to add a description to a table html 
Html :: fafa login icons html code 
Html :: show pdf in html 
Html :: open new tab when clicking link html 
Html :: nbsp in html 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =