App.config connectiontrign在类库中出错

时间:2017-06-02 10:11:40

标签: c# sql connection-string class-library

我在类库项目中遇到连接字符串错误。 在Appconfig中我有这个代码:

  <connectionStrings>
    <add name="DefaultConnection" connectionString="Data Source=DESKTOP-123\SQLEXPRESS;Initial Catalog=MyDb;User ID=sa;Password=mypassword"  providerName="System.Data.SqlClient"/>
  </connectionStrings>

连接字符串我调用静态函数:

public static string ConnDb {
        get {
            return ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
        }
    }

当我在函数

中使用此连接字符串时
Sqlconnection conn = new Sqlconnection(Class1.ConnDb)

我有一些错误,比如

  

{“对象引用未设置为对象的实例。”}

我该怎么办?

1 个答案:

答案 0 :(得分:1)

您可以使用appSettings替代选项。