Enterprise Library 4.1 Configuration - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:50:29Zhttp://stackoverflow.com/feeds/question/317974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/317974/enterprise-library-4-1-configuration0Enterprise Library 4.1 ConfigurationJason Punyon2008-11-25T16:28:13Z2008-11-25T17:39:04Z
<p>So I've followed the blog post <a href="http://www.pnpguidance.net/Post/EnterpriseLibraryExternalConfigurationSourceApplicationBlockSettings.aspx" rel="nofollow">here</a> to try and hold my enterprise library configuration in a separate config file. Specifically I'm trying to keep my connection strings there.</p>
<p>In the Enterprise Library Config Editor I see the connection strings I'm supposed to see however this run time code</p>
<pre><code>foreach (ConnectionStringSettings c in ConfigurationManager.ConnectionStrings)
{
Console.WriteLine(c.ConnectionString);
}
</code></pre>
<p>produces none of the connection strings I'm expecting. Am I missing something stupid here? Do I have to call some special method to load up the connection strings at runtime?</p>
<p>UPDATE: It appears that the rest of the enterprise config works correctly, just not Connection Strings. I'm going to use the configSource attribute of the connectionStrings section to specify yet another separate file for connectionStrings.</p>