The "Full" Mapping Strategy
Learn about the "full" mapping strategy and when and how to use it.
We'll cover the following...
Another mapping strategy is what I call the “Full” mapping strategy as shown in the figure below.
Mapping
This mapping strategy introduces a separate input and output model per operation. Instead
of using the domain model to communicate across layer boundaries, we use
a model specific to each operation, for example, the SendMoneyCommand
, which
acts as an input model to the SendMoneyUseCase
port in the figure.
We ...