Enterprise Library 4.1 Configuration - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:50:29Z http://stackoverflow.com/feeds/question/317974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/317974/enterprise-library-4-1-configuration 0 Enterprise Library 4.1 Configuration Jason Punyon 2008-11-25T16:28:13Z 2008-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>