Interface IQuery<TResult>
- Namespace
- Stratara.Abstractions.Mediator
- Assembly
- Stratara.Abstractions.dll
A query that returns TResult. Must be side-effect-free — no state
changes, no message-bus dispatch, no external system mutation. Implement ICommand
or ICommand<TResult> for any write operation.
public interface IQuery<TResult> : IRequest<TResult>
Type Parameters
TResultThe result type produced by the query handler.
- Extension Methods