You are not logged in.
Most desktop UIs have an undo+redo feature.
The typical way to implement this would be by using the Command pattern (https://en.wikipedia.org/wiki/Command_pattern). However, the trouble with that pattern is that you need to create command objects for every kind of operation.
I'm curious if it would be possible to leverage the transaction log table and use roll-back to undo operations.
Has anyone tried this?
Thanks again for a great tool!
Offline