我试图从配置文件访问connectionStrings。代码是ASP。Net + c#。我已经添加了System。配置参考,也提到与使用。但它仍然不接受集会。

我正在使用VSTS 2008。知道是什么原因吗?

另一个奇怪的地方是程序集名称显示为“System”。configuration",小写c,这不是其他系统程序集的名称显示方式。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Configuration;

namespace Utility
{
    public class CommonVariables
    {
        public static String ConnectionString
        {
            get { return ConfigurationManager.ConnectionStrings["EmployeeEntities"].ConnectionString; }
        }  
    }  
}

配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <connectionStrings>
    <add name="qbankEntities" connectionString="metadata=res://*/qbankModel.csdl|res://*/qbankModel.ssdl|res://*/qbankModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=localhost;Initial Catalog=qbank;Persist Security Info=True;User ID=**;Password=****;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>

当前回答

针对Visual Studio 2019

右键单击项目,去管理NuGet包。

搜索System。配置并安装System.Configuration.ConfigurationManager

现在在您的代码中,配置管理器将被识别。

其他回答

添加系统。配置作为所有项目的参考将解决这个问题。

进入项目->添加引用 在出现的框中,单击左侧列表中的“所有程序集”列表选项卡。 在中央列表中,滚动到System。配置并确保复选框被选中。 单击ok以应用,现在就可以访问ConfigurationManager类了。

加上这个答案,因为建议的解决方案都不适合我。

右键单击引用选项卡添加引用。 单击“程序集”选项卡 搜索“系统”。配置的 单击OK。

web configuration (web.config)的配置管理器已经过时了。 请看这个https://learn.microsoft.com/en-us/dotnet/api/system.configuration.configurationmanager.appsettings?redirectedfrom=MSDN&view=dotnet-plat-ext-3.1#System_Configuration_ConfigurationManager_AppSettings

创建一个Settings的实例

var appSettings = ConfigurationManager.AppSettings;

我已经得到了一个更好的解决方案的问题配置管理器不存在在当前的上下文中。

从web读取连接字符串。配置时,我们需要使用ConfigurationManager类及其方法。如果你想使用,你需要使用System.Configuration添加命名空间;

虽然您使用了这个名称空间,但当您尝试使用ConfigurationManager类时,系统会显示一个错误“ConfigurationManager不存在于当前上下文中”。 要解决这个问题:

ConfigurationManager.ConnectionStrings["ConnectionSql"].ConnectionString; 

如果你正在使用实体框架核心,另一种解决方案可以如下:

右键单击项目并选择“管理Nuget包” 在“浏览”选项卡上,搜索“Z.EntityFramework.Extensions.EFCore” 安装这个包,'using System.Configuration;'将会被删除 自动添加。