我可以对appsetting键进行分组吗?

时间:2009-06-11 08:35:26

标签: grouping app-config

我正在创建一个从Sql数据库创建Lucene索引的小型控制台应用程序。 该应用程序将使用单个参数运行。此参数将定义将使用的连接字符串以及目标文件的放置位置。

我想在app.config文件中存储连接字符串和目标路径。 是否有可能以某种方式对设置进行分组?例如,我想如果给出参数“ABC”,则使用connectionstring1并使用targetPathBanana。

以下示例不起作用,但我认为说明了我的意图

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <abc>
        <appSettings>               
            <add key="targetBasePath" value="\\Thor\lucene\abc"/>
        </appSettings>
        <connectionStrings>             
            <add name="commonString" 
                 connectionString="Data Source=thor;Persist Security Info=True;User ID=****;Password=****"/>
        </connectionStrings>
    </abc>    
    <123>
        <appSettings>               
            <add key="targetBasePath" value="\\Loki\temp\lucene"/>
        </appSettings>
        <connectionStrings>             
            <add name="commonString" 
                 connectionString="Data Source=helga;Persist Security Info=True;User ID=****;Password=****"/>
        </connectionStrings>
    </123>
</configuration>

我知道我可以让键的名称遵循命名约定,但我很好奇这是否可以通过不那么基于约定的方式解决。

1 个答案:

答案 0 :(得分:4)

如果您在app.config文件中使用此前缀,则应该可以根据需要创建包含<appSettings><connectionStrings>部分的任意数量的自定义部分组:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <sectionGroup name="ABC">
      <section name="appSettings" 
               type="System.Configuration.AppSettingsSection,
                     System.Configuration"/>
      <section name="connectionStrings" 
               type="System.Configuration.ConnectionStringsSection,
                     System.Configuration"/>
    </sectionGroup>
  </configSections>
  ... put your section groups here.....
  <ABC>
    <appSettings>                           
      <add key="targetBasePath" value="\\Thor\lucene\abc"/>
    </appSettings>
    <connectionStrings>                     
      <add name="commonString" connectionString="..."/>
    </connectionStrings>
  </ABC>
</configuration>