I am using CQRS pattern and ReSharper. Is there a way how to navigate from a query to its handler? Example from following code:
var query = new MyQuery();
var result = _mediator.Send(query);
Is there a way to easily go to MyQueryHandler implementation right from this code? Perhaps with giving cursor to the .Send() method and press some shortcut?
Place the cursor on the MyQuery
and then call ReSharper | Navigate | Navigate To | Consuming APIs
action (more info about the action is here)