从 web.config 或 app.config 文件中读取设置/部分
我的 web.config 文件中有许多连接字符串。我在同一文件中还有一个“dataConfiguration”设置,它指定我的应用程序连接到的数据库。
如何读取“defaultDatabase”设置/部分
请参阅下面的 xml 文件。预先非常感谢
<configuration>
<configSections>
</configSections>
<appSettings>
</appSettings>
<connectionStrings>
<add name="blablabla"
<add name="mySQlServerDb"
</connectionStrings>
<dataConfiguration defaultDatabase="blablabla/>
</configuration>
I have many Connection strings in my web.config file. I also have a "dataConfiguration" setting in the same file which specifies what database my app connects to.
How do I read the "defaultDatabase" setting / section from the
Please see below xml file. Many thanks in advance
<configuration>
<configSections>
</configSections>
<appSettings>
</appSettings>
<connectionStrings>
<add name="blablabla"
<add name="mySQlServerDb"
</connectionStrings>
<dataConfiguration defaultDatabase="blablabla/>
</configuration>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我过去的做法:
This is how I have done it in the past: