是否可以在运行时更改Web.Config中的数据库连接字符串值而无需重新加载应用程序域?这样做的原因是:


我正在构建一个使用一个代码实例和多个数据库实例方法的多租户应用程序,因此必须能够在运行时为不同的租户用户更改web.config中的数据库连接字符串。
当您使用实体框架/ LINQ to SQL等,数据集等时,ADO.NET总是会在web.config中注入数据库连接字符串。


所以我可能不得不做这样奇怪的事情。希望它足够清楚。非常感谢!

最佳答案

是的,有可能。
试试这个

System.Configuration.Configuration conf = WebConfigurationManager.OpenWebConfiguration(Server.MapPath);
conf.ConnectionStrings.ConnectionStrings["comp1"].ConnectionString = _connection_comp1;
conf.ConnectionStrings.ConnectionStrings["comp2"].ConnectionString = _connection_comp2;
conf.AppSettings.Settings["CompanyCode"].Value = _company_code;
conf.Save();

10-08 11:11