When mapping my Property with Fluent NHibernate, on insert, I would like to use the database default value only when my Property is null. So for instance, if the db default is 100, and my property is null, it should insert 100, otherwise insert the value of my property ( say 25 ).
Thanks.