Is there a way to delete messages after a certain sequence number in Akka.net
? I know that DeleteMessages(seqNumber)
deletes all messages before a certain sequence number, is there a way to delete after a seqNumber
? The main goal would be to revert to a previous state (perhaps those messages were created in error).
It's obviously possible to edit the database manually (or set is_deleted to true for those events) but I'm not sure if that would be a great idea.
Thanks