本文介绍了NHibernate和SqlServer中的数据审核的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在一个项目上使用NHibernate,我需要进行数据审计.我在有关讨论IInterceptor接口的codeproject上找到了这篇文章.
I'm using NHibernate on a project and I need to do data auditing. I found this article on codeproject which discusses the IInterceptor interface.
您首选的审计数据方式是什么?您是否使用数据库触发器?您是否使用与本文讨论的内容类似的内容?
What is your preferred way of auditing data? Do you use database triggers? Do you use something similar to what's dicussed in the article?
推荐答案
对于NHibernate 2.0,您还应该查看事件监听器.这些是IInterceptor接口的演变,我们已成功地将它们用于审核.
For NHibernate 2.0, you should also look at Event Listeners. These are the evolution of the IInterceptor interface and we use them successfully for auditing.
这篇关于NHibernate和SqlServer中的数据审核的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!