使用 Elmah 和 nHibernate 记录错误
我正在开发一个 Asp.Net MVC3 应用程序,我们正在考虑使用 Elmah 来进行数据记录。我们使用 Fluent nHibernate 来处理与大型机 DB2 数据库的所有交互。因此任何其他数据库提供商都不是一个选择。
我一直在对这个主题进行一些研究,但找不到任何有关如何做到这一点的信息。重写 Elmah DB 提供程序之一来处理接口是否合适?
我正在寻找一些有关如何开始或在哪里寻找指导的指导。
I'm working on an Asp.Net MVC3 application and we are looking at using Elmah to do our data logging. We are using fluent nHibernate to handle all interaction with mainframe DB2 database. So any other DB provider, is not an option.
I've been doing some research on this topic and cannot find any information on how to do it. Would rewriting one of Elmah DB providers to handle interfacing be appropriate?
I'm looking for some guidance on how to start this or where to look for the guidance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意评论者对你的问题的看法。如果可能的话,使用 log4net 而不是 ELMAH。 NHibernate 需要 log4net,因此它已经存在。除了错误日志记录之外,您还可以记录大量 NHibernate 内容(特别是它生成的 SQL 语句),我发现这在构建和调试应用程序时非常有用。
借助 log4net,您可以使用 AdoNetAppender 将日志消息发送到 Oracle 数据库。
I agree with the commenters on your question. Use log4net instead of ELMAH if at all possible. NHibernate requires log4net, so it will already be present. In addition to error logging, you can log copious NHibernate stuff (in particular the SQL statements it generates), which I find very useful while building and debugging an application.
With log4net you can send log messages to an Oracle database with the AdoNetAppender.
根据我的理解,Elmah 是作为 HTTP 模块实现的,并且不使用 NH,因此您必须编写一个提供程序(继承自 ErrorLog),请查看 Oracle 实现,然后更改 webconfig 以指向您的类
google 项目上存在一个未解决的问题网站,我想看看您是否可以对此进行投票,因为这对您来说会减少工作量,但您可能需要等待更长时间
http://code.google.com/p/elmah/issues/detail?id=257
From my understaning Elmah is implemented as a HTTP Module, and does not use a NH so you would have to write a provider (inherit from ErrorLog), look at the Oracle implemation then change the webconfig to point to your class
there is a issue open on the google project site, I would see if you can vote on this, as it would be less work for you, but you may have to wait longer
http://code.google.com/p/elmah/issues/detail?id=257