There is a facility in SQL that u can increment a value in a command like following :
update tableX set fieldX = fieldX + 2
is there something in LLBLGen that update a table without fetch?
This work is done in LLBLGen as following :
1: FetchEntity(tableX)
2: tableX.fieldX = tableX.fieldX + 2
3: SaveEntity(tableX)
in this way, the concurrency problem will ocuured! because after execution of line 1, it is possible that the value of fieldX will change!
is there an alternative?
thanks