R – Specifying select-before-update with Fluent NHibernate

fluent-nhibernatenhibernate

I'm trying to specify the "select-before-update" attribute in a ClassMap using Fluent NHibernate, but I'm not finding much on the web that shows what the right way to do it is. Does anyone know how to achieve this with Fluent NHibernate? Thanks!

Best Answer

SelectBeforeUpdate() in your ClassMap.

Related Topic