ELMAH 的 DbConnectionProvider
我想在 ASP.NET MVC3 项目中使用 ELMAH。我使用nuget安装包并安装ELMAH。 它使用连接字符串在配置文件中配置自身。
问题: 建议在配置文件中定义连接字符串。但我无法在配置文件中定义连接字符串,并且在应用程序启动时使用自定义连接提供程序工厂动态生成连接字符串。 如何为 ELMAH 设置连接字符串或 DbConnection?
提前致谢。
I would like to use ELMAH in ASP.NET MVC3 project. I used nuget install package and install ELMAH.
It configure itself in config file, with connection string.
Question:
It propose to define connection string in config file. but I can not define connection string in config file and connection string dynamicaly produce with custom connection provider factory when application start.
How can I set connection string or DbConnection for ELMAH?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 如何为 Elmah 使用 EntityFramework 连接字符串?
本质上是你需要创建您自己的 ErrorLog 实现(继承自 SqlErrorLog)并覆盖
ConnectionString
属性。Try How to use EntityFramework connection string for Elmah?
Essentially you need to create your own ErrorLog implementation (inherit from SqlErrorLog) and override the
ConnectionString
property.