Skip to content

Instantly share code, notes, and snippets.

@devmnj
Created October 3, 2021 15:15
Show Gist options
  • Save devmnj/83696f70db4f22d33e89dce813fd93f9 to your computer and use it in GitHub Desktop.
Save devmnj/83696f70db4f22d33e89dce813fd93f9 to your computer and use it in GitHub Desktop.
DotNet connection string fot SQL Server
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="Dolphin_Accounts.Properties.Settings.sql_connection"
connectionString="Data Source=.\sqlexpress;Initial Catalog=dolphine;User ID=sa;Password=" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
</startup>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment