677 B
677 B
Migrating from MediatR
Migrate from MediatR to Svrnty.CQRS.
Key Differences
| MediatR | Svrnty.CQRS |
|---|---|
IRequest<T> |
ICommandHandler<TCommand, TResult> |
IRequestHandler<T, TResult> |
ICommandHandler<T, TResult> |
| Assembly scanning | Explicit registration |
| Manual controllers | Automatic endpoints |
Migration Steps
- Replace
IRequest<T>with command/query classes - Update handler interfaces
- Change from
HandletoHandleAsync - Update service registration
- Remove controllers (use automatic endpoints)