NHibernate doesn't save one property only
问题 I'm trying to update a single column in the table. No UPDATE issued whatsoever (checked using SQL Profiler). No errors. Class mapping has dynamic-update="true" . No versioning enabled on the class. Flush mode Commit. Property mapped without any insert/update modifiers ( <property name="Deleted" /> ). Property is auto-implemented ( public virtual bool Deleted { get;set;} ). NH 3.3.0, .NET 4, x64. using (var transaction = this._session.BeginTransaction()) { try { var order = this.session.Load