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 IInterceptor.In other words i would like to add few columns to DB Table with no specifying new properties in original object's class. Do i have to configure/change/add to my Object.hbm.xml or App.config in that case?
Thank you