What is the best way (if any) for atomic update record from a table without tranaction opening ? I mean something like
UPDATE Table_1 SET Value=Value+@Increment WHERE Id=@Id
Maybe it is possible by HQL or plane SQL from NHibernate...
Does last NHibernate version support update via HQL ?! What about this statement?
UPDATE Table_1 SET Value=Value+@Increment, @Result=1
WHERE Id=@Id AND Value+@Increment<=@MaxLimit;SELECT @Result