I have many Connection strings in my web.config file. I also have a "dataConfiguration" setting in the same file which specifies what database my app connects to.
How do I read the "defaultDatabase" setting / section from the
Please see below xml file. Many thanks in advance
<configuration>
<configSections>
</configSections>
<appSettings>
</appSettings>
<connectionStrings>
<add name="blablabla"
<add name="mySQlServerDb"
</connectionStrings>
<dataConfiguration defaultDatabase="blablabla/>
</configuration>