dotnet-cqrs/docs/troubleshooting/common-errors.md

17 lines
311 B
Markdown

# Common Errors
Common errors and solutions.
## Handler Not Found
**Error:** `No service for type 'ICommandHandler<CreateOrderCommand, int>'`
**Solution:**
```csharp
builder.Services.AddCommand<CreateOrderCommand, int, CreateOrderCommandHandler>();
```
## See Also
- [Troubleshooting Overview](README.md)