Tagged Questions
7
votes
4answers
2k views
how to add event listener via fluent nhibernate?
I want to add an event listener (IPreUpdateEventListener) to add NH but I can't seem to find an example when using a fluent configuration.
I want to be able to add the listener when I create the ...
3
votes
2answers
530 views
Add objects to association in OnPreInsert, OnPreUpdate
I have an event listener (for Audit Logs) which needs to append audit log entries to the association of the object:
public Company : IAuditable {
// Other stuff removed for bravety
IAuditLog ...
0
votes
1answer
45 views
Implementing custom sytem.diagnostics for a managed application
I am facing a difficult problem. I need to implement a custom diagnostics section just like the system.diagnostics in the app.config for a managed application. The scenario is as follows:
I have an ...