log4net 中的连接字符串名称

发布于 2025-01-01 05:53:42 字数 393 浏览 2 评论 0原文

log4net 的 connectionStringName 属性是否从 web.config 以及 app.config 中提取连接字符串?

我尝试使用它,但由于某种原因它不起作用。

我在 web.config 中放入了一些名为“Logs”的连接字符串,然后在 log4net.config 中添加了带有 AdoNetAppenderAdoNetAppender 。 code>connectiongStringName 设置为“Logs”,但它似乎不起作用。

有人可以提供一些如何使用此功能的工作示例吗?

谢谢

Is the connectionStringName property of log4net pulling connection strings from web.config as well as from app.config?

I've tried to use it, but for some reason it did not work.

I've put some connection string named 'Logs' in my web.config and then added in my log4net.config an AdoNetAppender with a connectiongStringName set to 'Logs', but it did not seem to work.

Could someone provide some working example of how to use this feature?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪你搞怪i 2025-01-08 05:53:42

log4net 使用
ConfigurationManager.ConnectionStrings[]; 从配置文件中读取连接字符串。

因此,只要您在 app/web.config 文件中指定 ConnectionStrings,如下所示,就应该没问题:

<configuration>
    <connectionStrings>
        <add name="<ConnectionStringName>" connectionString="<actual connection string>" providerName="System.Data.SqlClient"/>
    </connectionStrings>
<configuration>

log4net uses
ConfigurationManager.ConnectionStrings[]; to read the connectionstring from the configuration file.

So as long as you specify ConnectionStrings in your app/web.config file like below, it should be all right:

<configuration>
    <connectionStrings>
        <add name="<ConnectionStringName>" connectionString="<actual connection string>" providerName="System.Data.SqlClient"/>
    </connectionStrings>
<configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文