-
Book Overview & Buying
-
Table Of Contents
Clean Architecture with .NET
By :
Chapter 7 established a clear and practical foundation for persistence. Repositories, mappings, and integration tests now work together behind well-defined boundaries, with infrastructure concerns kept firmly outside the core of the system. At this point, the application is internally sound, but it has no way to interact with the outside world.
The Presentation layer provides that entry point. It is where the application is assembled, hosted, and exposed to users, and where the boundaries established earlier are exercised rather than redefined. This layer is responsible for composition and interaction, not for business rules or persistence logic.
In this chapter, we implement the Presentation layer using Blazor Server. The focus is not on building UI components in isolation, but on wiring the system together in a way that remains consistent with Clean Architecture principles. Startup configuration, database initialization, and UI composition...