Does the last NHibernate version support record updates via HQL ?! What about this statement?
UPDATE Table_1 SET Value=Value+@Increment, @Result=1
WHERE Id=@Id AND Value+@Increment<=@MaxLimit;SELECT @Result
Is it possible to execute above statement and get @Result via plane sql (CreateSqlQuery) at least ?