我试图在主题中找到一些信息: EntityConnection error The specified named connection is either not found in the configuration
现在我找到了另一个解决方案 - 打开.config文件并在连接字符串中创建密钥。 但我的问题是 - 实体模型将连接字符串添加到app.config文件。 ConfigurationManager.OpenExeConfiguration打开myApplication.exe.config文件。
答案 0 :(得分:2)
将OpenMappedExeConfiguration
与ExeConfigurationFileMap
结合使用以指定文件名:
ConfigurationManager.OpenMappedExeConfiguration(
new ExeConfigurationFileMap() { ExeConfigFilename = "your file path here" }, ConfigurationUserLevel.None);