NHibernate IInterceptor implementation(add properties to DB table that original domain class doesn't have)
How is possible to set some special column values when update/insert entities via NHibernate without extending domain classes with special properties? for example: in my case i would like to get object and just moment before update/insert db add to that object some additional information (like user id or computer name) by using IInterce...