ConfigurationManager.OpenExeConfiguration - 是否可以打开和编辑app.config?

时间:2014-03-06 14:46:55

标签: c# wpf configurationmanager

我试图在主题中找到一些信息: EntityConnection error The specified named connection is either not found in the configuration

现在我找到了另一个解决方案 - 打开.config文件并在连接字符串中创建密钥。 但我的问题是 - 实体模型将连接字符串添加到app.config文件。 ConfigurationManager.OpenExeConfiguration打开myApplication.exe.config文件。

  • 是否可以更改该应用程序将使用myApplication.exe.config?
  • 或者可能有办法打开app.config文件并添加connectionString?

1 个答案:

答案 0 :(得分:2)

OpenMappedExeConfigurationExeConfigurationFileMap结合使用以指定文件名:

ConfigurationManager.OpenMappedExeConfiguration(
   new ExeConfigurationFileMap() { ExeConfigFilename = "your file path here" }, ConfigurationUserLevel.None);