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 ...
3
votes
4answers
357 views

Temporal data using NHibernate

Can anyone supply some tips/pointers/links on how to implement a temporal state-table with NHibernate? I.e., each entity table has *start_date* and *end_date* columns that describe the time interval ...
1
vote
1answer
1k views

How to properly configure NHibernate event listeners

I'm trying to use an event listener for the first time. All samples I've seen show how easy it is to configure, but for some reason I'm having trouble - it doesn't seem to be called. I suspect I'm ...
0
votes
1answer
113 views

Having some trouble with Nhibernate ISaveOrUpdateEventListener

I'm just starting out a new project, and am trying to impliment a ISaveOrUpdateEventListener to set the datecreated and dateupdated fields on my entities. I've been trying to follow a simplified ...
0
votes
0answers
78 views

Using hql update query in PreInsert Event Listener in nhibernate 3.0 causes error

I am trying to run a hql update query while inserting a new entity using linq nhibernate. I get; "null id in DomainModel.Entities.StorageNode entry (don't flush the Session after an exception ...