根据提供者名称从 web.config 获取连接字符串
我试图弄清楚如何从具有特定提供商但卡住了的 web.config 中获取所有连接字符串。
我的方法的基础看起来像这样
var webConfig = new ExeConfigurationFileMap { ExeConfigFilename = GlobalSettings.FullpathToRoot + "web.config" };
var config = ConfigurationManager.OpenMappedExeConfiguration(webConfig, ConfigurationUserLevel.None);
var section = (ConnectionStringsSection)config.GetSection("connectionStrings");
// some code like
foreach(var item in section.providerName.equals("sql.provider"))
...
非常感谢任何建议!
Im trying to figure out how to grab all connectionStrings from a web.config that has a certain provider but got stuck.
The basics of my method looks like this
var webConfig = new ExeConfigurationFileMap { ExeConfigFilename = GlobalSettings.FullpathToRoot + "web.config" };
var config = ConfigurationManager.OpenMappedExeConfiguration(webConfig, ConfigurationUserLevel.None);
var section = (ConnectionStringsSection)config.GetSection("connectionStrings");
// some code like
foreach(var item in section.providerName.equals("sql.provider"))
...
Any advice is highly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了这个问题
或者使用linq
Solved the issue
or by using linq