Sebastien Roche

Results 2 comments of Sebastien Roche

I had the same question. I wanted to call OnSuccess execute an async action. I found a not so good workaround to do that. ``` return (await _mediator.Send(command)) .OnSuccess(id =>...

Not sure i'm following you: With this code, .net will think I want to use Func: ``` var r = (await _mediator.Send(command)) // TODO: Shall we monitor for notification return...