Is it good practice in CQRS to use multiple request handlers and / or manipulator commands in each other? Or should you have only one use case?
- Command Manipulators in a Command Manipulator
- Request Handlers in the Command Manipulator
- Request handlers in the request handler
- Commanders in the request handler -> personally, I would not do this because you do not expect the request to change the data ... Correct?
source
share