Created
October 3, 2021 15:15
-
-
Save devmnj/83696f70db4f22d33e89dce813fd93f9 to your computer and use it in GitHub Desktop.
DotNet connection string fot SQL Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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