Questions
- Is it true that the Domain layer project must have a reference to the database driver project?
No, it is false. References to drivers must be added to the infrastructure layer.
- Which solution projects are among the application services references?
Only those projects that are part of the Domain Layer.
- Which solution projects are among the references of the outermost layer project of an Onion Architecture?
Application Services, Db Drivers, and all infrastructure drivers.
- Is it true that an aggregate always corresponds to a unique database table?
No, it is false.
- Why are domain events needed?
They are needed to decouple the code of different aggregates.
- What is the purpose of the
WORKDIR
Dockerfile instruction?
To set the image current directory.
- How is it possible to pass environment variables to a container?
Through the -e options of the...