我已經有一個連接字符串在我的配置文件SQL Server連接字符串
<connectionStrings>
<add
name="ConnectionString"
connectionString="Data Source=*;Initial Catalog=*;User ID=*;Password=*"
providerName=".NET Framework Data Provider for SQL Server" />
目前,我只是增加一個連接字符串在我的cs文件:
SqlConnection myConnection =
new SqlConnection("user id=*;password=*;server=localhost;");
我想使用配置文件字符串連接到.cs文件中的數據庫,而不添加另一個字符串。我怎樣才能做到這一點?
using (SqlConnection cn =
new SqlConnection(
ConfigurationManager.ConnectionStrings["MyDbConn"].ToString()))
這是我找到的代碼,有沒有更簡單的方法?
沒有,沒有辦法短,除非你包的連接字符串的檢索的只讀屬性在一個單獨的靜態類或東西,給你'MyConnectionStrings.ConnectionString;'或不管你打算如何命名。 –