private static void ReadConfiguration( ref string connectionString, ref MSSqlServerSinkOptions sinkOptions, IConfigurationSection sinkOptionsSection, IConfiguration appConfiguration, ref ColumnOptions columnOptions, IConfigurationSection columnOptionsSection, IApplySystemConfiguration applySystemConfiguration, IApplyMicrosoftExtensionsConfiguration applyMicrosoftExtensionsConfiguration) { sinkOptions = sinkOptions ?? new MSSqlServerSinkOptions(); columnOptions = columnOptions ?? new ColumnOptions(); var serviceConfigSection = applySystemConfiguration.GetSinkConfigurationSection(AppConfigSectionName); if (serviceConfigSection != null) { connectionString = applySystemConfiguration.GetConnectionString(connectionString); columnOptions = applySystemConfiguration.ConfigureColumnOptions(serviceConfigSection, columnOptions); sinkOptions = applySystemConfiguration.ConfigureSinkOptions(serviceConfigSection, sinkOptions); if (appConfiguration != null || columnOptionsSection != null || sinkOptionsSection != null) { SelfLog.WriteLine("Warning: Both System.Configuration (app.config or web.config) and Microsoft.Extensions.Configuration are being applied to the MSSQLServer sink."); } } if (appConfiguration != null) { connectionString = applyMicrosoftExtensionsConfiguration.GetConnectionString(connectionString, appConfiguration); } if (columnOptionsSection != null) { columnOptions = applyMicrosoftExtensionsConfiguration.ConfigureColumnOptions(columnOptions, columnOptionsSection); } if (sinkOptionsSection != null) { sinkOptions = applyMicrosoftExtensionsConfiguration.ConfigureSinkOptions(sinkOptions, sinkOptionsSection); } }
private static void ReadConfiguration( string configSectionName, ref string connectionString, ref SinkOptions sinkOptions, ref ColumnOptions columnOptions, IApplySystemConfiguration applySystemConfiguration) { sinkOptions = sinkOptions ?? new SinkOptions(); columnOptions = columnOptions ?? new ColumnOptions(); var serviceConfigSection = applySystemConfiguration.GetSinkConfigurationSection(configSectionName); if (serviceConfigSection != null) { columnOptions = applySystemConfiguration.ConfigureColumnOptions(serviceConfigSection, columnOptions); sinkOptions = applySystemConfiguration.ConfigureSinkOptions(serviceConfigSection, sinkOptions); } connectionString = applySystemConfiguration.GetConnectionString(connectionString); }