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

311 B

Common Errors

Common errors and solutions.

Handler Not Found

Error: No service for type 'ICommandHandler<CreateOrderCommand, int>'

Solution:

builder.Services.AddCommand<CreateOrderCommand, int, CreateOrderCommandHandler>();

See Also