这适用于Windows应用程序。
在一个类中,我想裁判我名为freighthelper的connectionstring,它位于我项目的settings.settings文件中。我该怎么做呢?
我试过这个没有成功。
_connection.ConnectionString = FreightHelper.Properties.Settings.Default.freighthelper;
答案 0 :(得分:2)
为什么需要将连接字符串存储在设置文件中?它通常放在配置文件中,并按如下方式检索:http://msdn.microsoft.com/en-us/library/ms254494%28VS.80%29.aspx
答案 1 :(得分:0)
试试这个:_connection.ConnectionString=Settings.Default. freighthelper;
来读取设置文件。
NOte:连接字符串最好放在App.confing
E.g:
<connectionStrings>
<add name="Name" connectionString="Data Source=Instance Name;Integrated Security=True;MultipleActiveResultSets=True;"
providerName="System.Data.EntityClient" />