Kasbolat Kumakhov
Kasbolat Kumakhov
Unfortunately `InvokeAsync` won't help here since in the end it is also not awaited hence not observed. I guess I'll move it all to effects then. Thanks.
Thanks, but it doesn't make any difference regarding exception handling. If it's not awaited in the end then exceptions are not handled. For example: ```c# private void Test() { _...
I was going to )) Just need to find some time to make it right.
@massimotomasi in your case I would just make something like `FinishedEvent` that is triggered by an effect of `Action` when it's finished. And in razor pages I would `SubscribeToAction` to...