编程语言
首页 > 编程语言> > C#ConfigurationManager从app.config检索错误的连接字符串

C#ConfigurationManager从app.config检索错误的连接字符串

作者:互联网

我有一个简单的WinForms应用程序,它将最终成为一个游戏.现在,我只是在它的数据访问层上工作,遇到了麻烦.我创建了一个名为DataAccess的单独项目,在其中创建了本地.mdf SQL Server数据库文件.我还创建了一个app.config文件来存储连接字符串.

这是配置文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <connectionStrings>
        <add name="TBG_Master"
             connectionString="Data Source=(localdb)\MSSQLLocalDb;Integrated Security=true;AttachDbFileName=|DataDirectory|\TBG_Master.mdf"
             providerName="System.Data.SqlClient"/>
    </connectionStrings>
</configuration>

为了从app.config文件中检索连接字符串,我正在使用从this问题中提取的代码.

Assembly service = Assembly.GetExecutingAssembly();
ConnectionStringsSection css = ConfigurationManager.OpenExeConfiguration(service.Location).ConnectionStrings;
string cs = css.ConnectionStrings["TBG_Master"].ConnectionString;
return cs;

当到达使用字符串作为键来拉动连接字符串的行时,它给了我一个空引用异常.在检查css.ConnectionString集合之后,它包含的唯一连接字符串如下所示:

data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true

这显然不是我的app.config文件中的内容,并且我知道我的DataAccess项目中没有其他app.config文件.同样在调试之后,我知道它正在寻找正确的程序集.

为什么给我这个连接字符串而不是正确的字符串?

解决方法:

正如@Amy所指出的,之所以不起作用,是因为连接字符串未存储在执行程序集的app.config文件中.移动后,它现在可以正常工作了.谢谢您的快速帮助:)

标签:connection-string,app-config,c,winforms
来源: https://codeday.me/bug/20191111/2021625.html