Skip to content

Instantly share code, notes, and snippets.

@cpoDesign
Created April 27, 2018 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cpoDesign/248c2b053054bef7ee282011ab68cc5c to your computer and use it in GitHub Desktop.
Save cpoDesign/248c2b053054bef7ee282011ab68cc5c to your computer and use it in GitHub Desktop.
Sample for configuration string
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<connectionStrings>
<add name="ConnectionStringUnderTest" connectionString="Data Source=localhost;Initial Catalog=MyDatabaseCatalogToReplace;Integrated Security=True" />
</connectionStrings>
<appSettings>
<add key="CommandTimeOut" value="90"/>
<add key="SqlCommand" value="select count(*) from (select * from dbo.TestingTable) as underTest" />
</appSettings>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment