Click here to Skip to main content
15,887,683 members
Articles / Fluent

Update Configurations Without Replace With Enterprise Library 5 Fluent Configuration API

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
28 Oct 2010CPOL1 min read 12K   1  
Update Configurations without Replace with Enterprise Library 5 Fluent Configuration API

I got a question today in an article I published about the fluent configuration API in Enterprise Library 5. The question was how to add a database connection string to an existing configuration during runtime. The person who wrote the question also published a specific solution which I refactored to a general purpose solution that I’ll show in this post.

The Problem

When you use the fluent configuration API, the ConfigurationSourceBuilder class has just one method to update the configuration which is UpdateConfigurationWithReplace. This method updates the configuration source and replaces any existing sections with those built up with the builder. If during runtime, we want to update the configuration without replacing the current configuration, we have a problem.

The Solution

Use the System.Configuration API to get the current configuration and add it to the new configuration you build. Here is an implementation of how to copy all the current connection strings by using the IDataConfiguration which is part of the fluent configuration API:

C#
private static void CopyCurrentDataConfiguration(IDataConfiguration dataConfig)
{
  // Load the configuration from the configuration file
  var configSource = ConfigurationSourceFactory.Create();
 
  // Retrieve the default datasource name
  var dataConfigurationSection = (DatabaseSettings)configSource.GetSection(
      DatabaseSettings.SectionName);
  var defaultDatabaseName = dataConfigurationSection.DefaultDatabase;
 
  CopyConnectionStrings(dataConfig, defaultDatabaseName);
}
 
private static void CopyConnectionStrings(IDataConfiguration dataConfig,
   string defaultDatabaseName)
{
  // Add the configurations from our application config file to the builder
  foreach (ConnectionStringSettings settings in ConfigurationManager.ConnectionStrings)
  {
    var configuredDatabase = dataConfig
      .ForDatabaseNamed(settings.Name)
      .ThatIs
      .AnotherDatabaseType(settings.ProviderName);
 
    if (settings.Name.Equals(defaultDatabaseName))
    {
      configuredDatabase.AsDefault();
    }
  }
}

In the first method, I retrieve the Enterprise Library database settings and save the default database name. Then I use the second method to configure all the current connection strings. Since the database provider isn’t known, I use the AnotherDatabaseType method to add the providers. Here is an example of how to use these methods to add another connection string to your configuration:

C#
public void AddNewConnectionString(string databaseName, string connString)
{
  var builder = new ConfigurationSourceBuilder();
  var dataConfig = builder.ConfigureData();
  CopyCurrentDataConfiguration(dataConfig);
 
  // Add our database connections to the builder
  dataConfig
    .ForDatabaseNamed(databaseName)
    .ThatIs
    .ASqlDatabase()
    .WithConnectionString(connString);
 
  // Create a new configuration source, update it with the builder and make it the
  // current configuration
  var newConfigSource = new DictionaryConfigurationSource();
  builder.UpdateConfigurationWithReplace(newConfigSource);
  EnterpriseLibraryContainer.Current =
    EnterpriseLibraryContainer.CreateDefaultContainer(newConfigSource);
}

Summary

The lack of current support to only updates without replacing the configurations in the fluent configuration API can cause you trouble when you need that behavior. In the post, I showed a workaround to configure the EnterpriseLibraryContainer without replacing the current configurations for connection strings. This method can be applied to other configurations as well but you’ll have to write code to achieve that.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead sparXys
Israel Israel
Gil Fink is a web development expert and ASP.Net/IIS Microsoft MVP. He is the founder and owner of sparXys. He is currently consulting for various enterprises and companies, where he helps to develop Web and RIA-based solutions. He conducts lectures and workshops for individuals and enterprises who want to specialize in infrastructure and web development. He is also co-author of several Microsoft Official Courses (MOCs) and training kits, co-author of "Pro Single Page Application Development" book (Apress) and the founder of Front-End.IL Meetup. You can read his publications at his website: http://www.gilfink.net

Comments and Discussions

 
-- There are no messages in this forum --