SlideShare a Scribd company logo
Applying Clean
Architecture to ASP.NET
Core Apps
STEVE SMITH
ARDALIS.COM | @ARDALIS | STEVE@ARDALIS.COM
MENTOR | TRAINER | COACH | FORCE MULTIPLIER
Applying Clean Architecture to ASP.NET Core | @ardalis
Welcome SLC-NET Folks!
Applying Clean Architecture to ASP.NET Core | @ardalis
Literally 10 minutes before starting…
Applying Clean Architecture to ASP.NET Core | @ardalis
Literally 10 minutes before starting…
Applying Clean Architecture to ASP.NET Core | @ardalis
Learn More After Today
1) Pluralsight – FREE in April 2020
◦ Domain-Driven Design Fundamentals
https://www.pluralsight.com/courses/domain-driven-design-fundamentals
2) Microsoft FREE eBook/Sample App (updated for .NET Core 3.1)
◦ eShopOnWeb eCommerce Sample https://ardalis.com/architecture-ebook
3) Contact me for mentoring/training for your company/team
4) Developer Career Mentoring at devBetter.com
Applying Clean Architecture to ASP.NET Core | @ardalis
Weekly Dev Tips
Podcast and Newsletter (and stream)
 Ardalis.com/tips
 WeeklyDevTips.com
Streaming at twitch.tv/ardalis Fridays
Applying Clean Architecture to ASP.NET Core | @ardalis
Questions
HOPEFULLY YOU’LL KNOW THE ANSWERS WHEN WE’RE DONE
Applying Clean Architecture to ASP.NET Core | @ardalis
Why do we separate applications into multiple
projects?
Applying Clean Architecture to ASP.NET Core | @ardalis
What are some principles we can apply when
organizing our software modules?
Applying Clean Architecture to ASP.NET Core | @ardalis
How does the organization of our application’s
solution impact coupling?
Applying Clean Architecture to ASP.NET Core | @ardalis
What problems result from certain common
approaches?
Applying Clean Architecture to ASP.NET Core | @ardalis
How does Clean Architecture address these
problems?
Applying Clean Architecture to ASP.NET Core | @ardalis
How does ASP.NET Core help?
Applying Clean Architecture to ASP.NET Core | @ardalis
Principles
A BIT OF GUIDANCE
Clean architecture with asp.net core by Ardalis
Separation of Concerns
Avoid mixing different code responsibilities in the
same (method | class | project)
Applying Clean Architecture to ASP.NET Core | @ardalis
Separation of Concerns
The Big Three™
Data Access
Business Rules and Domain Model
User Interface
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Single Responsibility
Works in tandem with Separation of Concerns
Classes should focus on a single responsibility – a
single reason to change.
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Following Don’t Repeat Yourself…
Refactor repetitive code into functions
Group functions into cohesive classes
Group classes into folders and namespaces by
 Responsibility
 Level of abstraction
 Etc.
Further group class folders into projects
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Invert (and inject) Dependencies
Both high level classes and implementation-detail classes should
depend on abstractions (interfaces).
Applying Clean Architecture to ASP.NET Core | @ardalis
Invert (and inject) Dependencies
Classes should follow Explicit Dependencies Principle:
Request all dependencies via their constructor
Make your types honest, not deceptive
Applying Clean Architecture to ASP.NET Core | @ardalis
Invert (and inject) Dependencies
Corollary: Abstractions/interfaces must be defined somewhere accessible by:
Low level implementation services
High level business services
User interface entry points
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Make the right thing easy
and the wrong thing hard
FORCE DEVELOPERS INTO A “PIT OF SUCCESS”
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Make the right thing easy and the wrong thing hard.
UI classes shouldn’t depend directly on infrastructure classes
◦ How can we structure our solution to help enforce this?
Applying Clean Architecture to ASP.NET Core | @ardalis
Make the right thing easy and the wrong thing hard.
Business/domain classes shouldn’t depend on infrastructure classes
◦ How can our solution design help?
Applying Clean Architecture to ASP.NET Core | @ardalis
Make the right thing easy and the wrong thing hard.
Repetition of (query logic, validation logic, policies, error handling, anything) is a problem
◦ What patterns can we apply to make avoiding repetition easier
than copy/pasting?
Applying Clean Architecture to ASP.NET Core | @ardalis
“Classic” N-Tier
Architecture
OR N-LAYER
Layer
Layer
Layer
Applying Clean Architecture to ASP.NET Core | @ardalis
Source: MSDN Website, 2001
Applying Clean Architecture to ASP.NET Core | @ardalis
Transitive Dependencies
DB
Data Access
Layer
Business Logic
Layer
User Interface
Layer
Everything
Depends on the database
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Domain-Centric
Design
AND THE CLEAN ARCHITECTURE
Core
Business
Logic
Everything
Else
Applying Clean Architecture to ASP.NET Core | @ardalis
Domain Model
Not just business logic, but also:
A model of the problem space composed of Entities, Interfaces, Services, and
more.
Interfaces define contracts for working with domain objects
Everything in the application (including infrastructure and data access) depends
on these interfaces and domain objects
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture
Onion Architecture
Hexagonal Architecture
Ports and Adapters
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
1. You do not talk about Clean Architecture.
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
1. You do not talk about Clean Architecture.
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
The Application Core contains the Domain Model
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
All projects depend on the Core project;
dependencies point inward toward this core
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
Inner projects define interfaces;
Outer projects implement them
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture “Rules”
Avoid direct dependency on the Infrastructure project
(except from Integration Tests and possibly Startup.cs)
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture Features
Framework Independent
◦ You can use this architecture with ASP.NET (Core), Java, Python,
etc.
◦ It doesn’t rely on any software library or proprietary codebase.
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture Features
Database Independent
◦ The vast majority of the code has no knowledge of persistence
details.
◦ This knowledge may exist in just one class, in one project that no
other project references.
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture Features
UI Independent
◦ Only the UI project cares about the UI.
◦ The rest of the system is UI-agnostic.
Applying Clean Architecture to ASP.NET Core | @ardalis
Clean Architecture Features
Testable
◦ Apps built using this approach, and especially the core domain
model and its business rules, are easy to test.
Applying Clean Architecture to ASP.NET Core | @ardalis
Refactoring to a Clean Architecture
Best to start from a properly organized solution
◦ See https://github.com/ardalis/CleanArchitecture
Next-best: Start from an application consisting of just a single project
Most difficult: Large, existing investment in multi-layer architecture without
abstractions or DI
Applying Clean Architecture to ASP.NET Core | @ardalis
The Core Project (domain model)
Minimal dependencies – none on Infrastructure.
What Goes in Core:
Interfaces
Entities Value Objects Aggregates
Domain
Services
Domain Events
Exceptions
Specifications
Event Handlers
Applying Clean Architecture to ASP.NET Core | @ardalis
The Infrastructure Project
All dependencies on out-of-process resources.
What Goes in Infrastructure:
Repositories
EF (Core)
DbContext
Web API
Clients
File System
Accessors
Email/SMS
Sending
Logging
Adapters
System Clock
Other
Services
Cached
Repositories
Interfaces
Applying Clean Architecture to ASP.NET Core | @ardalis
The Web Project
All dependencies on out-of-process resources.
What Goes in Web:
Controllers Views
ViewModels
Filters Binders
Other Services
Razor
Pages
ApiModels BindingModels
Tag/Html
Helpers
Or
Interfaces
Applying Clean Architecture to ASP.NET Core | @ardalis
Sharing Between Solutions:
Shared Kernel
Common Types May Be Shared Between Solutions. Will be referenced by Core project(s).
Ideally distributed as Nuget Packages.
What Goes in Shared Kernel:
Base Entity
Base Domain
Event
Base
Specification
Common
Exceptions
Common
Interfaces
Common Auth
e.g. User class
Common DI
Common
Logging
Common
Guard Clauses
Applying Clean Architecture to ASP.NET Core | @ardalis
Guard Clauses?
BAD EXAMPLE
public void ProcessOrder(Order order, Custom customer)
{
if(order != null)
{
if(customer != null)
{
// process order here
} else {
throw new ArgumentNullException(nameof(customer), customer);
}
} else {
throw new ArgumentNullException(nameof(order), order);
}
}
Applying Clean Architecture to ASP.NET Core | @ardalis
Guard Clauses?
public void ProcessOrder(Order order, Customer customer)
{
if(order == null) throw new ArgumentNullException(nameof(order),
order);
if(customer==null) throw new ArgumentNullException(nameof(customer),
customer);
// process order here
}
Applying Clean Architecture to ASP.NET Core | @ardalis
Guard Clauses?
Simple checks for input that use common rules and exceptions.
Nuget Package: Ardalis.GuardClauses (https://github.com/ardalis/GuardClauses)
Example:
public void ProcessOrder(Order order, Customer customer)
{
Guard.Against.Null(order, nameof(order));
Guard.Against.Null(customer, nameof(customer));
// process order here
}
Applying Clean Architecture to ASP.NET Core | @ardalis
Solution Structure – Clean Architecture
Web
Core
Infrastructure
Shared Kernel
Unit Tests
Functional
Tests
Integration
Tests
Applying Clean Architecture to ASP.NET Core | @ardalis
Typical (Basic) Folder Structure
Applying Clean Architecture to ASP.NET Core | @ardalis
What belongs in actions/handlers?
Controller Actions (or Page Handlers) should:
1) Accept task-specific types (ViewModel, ApiModel, BindingModel)
2) Perform and handle model validation (ideally w/filters)
3) “Do Work” (More on this in a moment)
4) Create any model type required for response (ViewModel,
ApiModel, etc.)
5) Return an appropriate Result type (View, Page, Ok, NotFound,
etc.)
Applying Clean Architecture to ASP.NET Core | @ardalis
“Do Work” – Option One
Repositories and Entities
1) Get entity from an injected Repository
2) Work with the entity and its methods.
3) Update the entity’s state using the Repository
Great for simple operations
Great for CRUD work
Requires mapping between web models and domain model within controller
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
“Do Work” – Option Two
Work with an application service.
1) Pass ApiModel types to service
2) Service internally works with repositories and domain model types.
3) Service returns a web model type
Better for more complex operations
Application Service is responsible for mapping between models
Keeps controllers lightweight, and with fewer injected dependencies
Applying Clean Architecture to ASP.NET Core | @ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis
“Do Work” – Option Three
Work with commands and a tool like Mediatr
1) Use ApiModel types that represent commands (e.g. RegisterUser)
2) Send model-bound instance of command to handler using
_mediator.Send()
No need to inject separate services to different controllers – Mediatr becomes
only dependency.
Applying Clean Architecture to ASP.NET Core | @ardalis
Instantiate Appropriate Command
Applying Clean Architecture to ASP.NET Core | @ardalis
Resolve Command w/Model Binding
Applying Clean Architecture to ASP.NET Core | @ardalis
Code Walkthrough
GITHUB.COM/ARDALIS/CLEANARCHITECTURE
Applying Clean Architecture to ASP.NET Core | @ardalis
Resources
Clean Architecture Solution Template
https://github.com/ardalis/cleanarchitecture
For Worker Services: https://github.com/ardalis/CleanArchitecture.WorkerService
Online Courses (Pluralsight and DevIQ)
• SOLID Principles of OO Design https://ardalis.com/ps-stevesmith
• N-Tier Architecture in C# https://ardalis.com/ps-stevesmith
• DDD Fundamentals https://ardalis.com/ps-stevesmith
• ASP.NET Core Quick Start http://aspnetcorequickstart.com/
Weekly Dev Tips Podcast http://www.weeklydevtips.com/
Microsoft Architecture eBook/sample http://aka.ms/WebAppArchitecture
Group Coaching for Developers https://devbetter.com/
Applying Clean Architecture to ASP.NET Core | @ardalis
Thanks!
Steve Smith
steve@ardalis.com
@ardalis
Applying Clean Architecture to ASP.NET Core | @ardalis

More Related Content

PDF
Clean Architecture Essentials - Stockholm Software Craftsmanship
PDF
Clean architecture with asp.net core
PPTX
Clean architecture
PDF
M|18 Architectural Overview: MariaDB MaxScale
PPTX
Introducing Domain Driven Design - codemash
PDF
Clean Architecture
PDF
Clean Architecture
PPTX
The SOLID Principles Illustrated by Design Patterns
Clean Architecture Essentials - Stockholm Software Craftsmanship
Clean architecture with asp.net core
Clean architecture
M|18 Architectural Overview: MariaDB MaxScale
Introducing Domain Driven Design - codemash
Clean Architecture
Clean Architecture
The SOLID Principles Illustrated by Design Patterns

What's hot (20)

PPTX
Domain driven design
PDF
Introducing Clean Architecture
PDF
Hexagonal architecture for java applications
PDF
UDA-Componentes RUP. Árbol
PDF
CSS Grid vs. Flexbox
PPT
Domain Driven Design Demonstrated
PPTX
Domain driven design
PDF
Clean Architecture Applications in Python
PDF
Understanding MicroSERVICE Architecture with Java & Spring Boot
PDF
WildFly AppServer - State of the Union
PPTX
MySQL8.0_performance_schema.pptx
PPTX
Clean architecture on android
PDF
Hexagonal architecture - message-oriented software design
PPT
How Cascading Style Sheets (CSS) Works
PPTX
Hexagonal architecture with Spring Boot
PDF
The Evolution of Airbnb's Frontend
PDF
Mysteries of the binary log
PDF
Hexagonal architecture
PPTX
Domain Driven Design(DDD) Presentation
PPTX
Power shell training
Domain driven design
Introducing Clean Architecture
Hexagonal architecture for java applications
UDA-Componentes RUP. Árbol
CSS Grid vs. Flexbox
Domain Driven Design Demonstrated
Domain driven design
Clean Architecture Applications in Python
Understanding MicroSERVICE Architecture with Java & Spring Boot
WildFly AppServer - State of the Union
MySQL8.0_performance_schema.pptx
Clean architecture on android
Hexagonal architecture - message-oriented software design
How Cascading Style Sheets (CSS) Works
Hexagonal architecture with Spring Boot
The Evolution of Airbnb's Frontend
Mysteries of the binary log
Hexagonal architecture
Domain Driven Design(DDD) Presentation
Power shell training
Ad

Similar to Clean architecture with asp.net core by Ardalis (20)

PPTX
Clean architecture
PDF
Clean Architecture By Jason Taylor
PDF
Implementing Clean Architecture
PDF
TDC SP 2019 - Trilha .NET - Clean Architecture
PDF
Architecting ASP.NET Core Applications Carl-Hugo Marcotte
PPTX
Design Pattern Mastery - Momentum Dev Con 19 Apr 2018
PPTX
Architecting, testing and developing an mvc application
PDF
Asp.net core tutorial
PPTX
Clean Architecture
PDF
[PDF Download] Architecting ASP.NET Core Applications Carl-Hugo Marcotte full...
PPTX
Clean architecture proposal-Generic.pptx
PPTX
Implementing Clean Architecture - Conference Talk
PDF
Clean architecturebookreport
PDF
Dot NET Solution Architect Roadmap By Scholarhat PDF
PPTX
Building Enterprise Apps with ASP.NET Core 2.1
PPTX
JavaBeer_Clean architecture_update.v2.pptx
PPTX
‘Cloud Ready’ Design through Application Software Infrastructure
PDF
ITCamp 2018 - Florin Coros - ‘Cloud Ready’ Design through Application Softwar...
PPTX
ASP.NET Core 1.0
PDF
Why ASP.Net Core is Ideal for Developing High-Performance Enterprise Apps.pdf
Clean architecture
Clean Architecture By Jason Taylor
Implementing Clean Architecture
TDC SP 2019 - Trilha .NET - Clean Architecture
Architecting ASP.NET Core Applications Carl-Hugo Marcotte
Design Pattern Mastery - Momentum Dev Con 19 Apr 2018
Architecting, testing and developing an mvc application
Asp.net core tutorial
Clean Architecture
[PDF Download] Architecting ASP.NET Core Applications Carl-Hugo Marcotte full...
Clean architecture proposal-Generic.pptx
Implementing Clean Architecture - Conference Talk
Clean architecturebookreport
Dot NET Solution Architect Roadmap By Scholarhat PDF
Building Enterprise Apps with ASP.NET Core 2.1
JavaBeer_Clean architecture_update.v2.pptx
‘Cloud Ready’ Design through Application Software Infrastructure
ITCamp 2018 - Florin Coros - ‘Cloud Ready’ Design through Application Softwar...
ASP.NET Core 1.0
Why ASP.Net Core is Ideal for Developing High-Performance Enterprise Apps.pdf
Ad

More from Steven Smith (20)

PDF
Finding Patterns in the Clouds - Cloud Design Patterns
PPTX
Introducing domain driven design - dogfood con 2018
PPTX
Most Useful Design Patterns
PPTX
Improving the Design of Existing Software
PPTX
Introducing ASP.NET Core 2.0
PPTX
Decoupling with Domain Events
PPTX
Improving the Quality of Existing Software
PPTX
Improving the Quality of Existing Software
PPTX
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
PPTX
Improving the Quality of Existing Software - DevIntersection April 2016
PPTX
Breaking Dependencies to Allow Unit Testing
PPTX
Improving the Quality of Existing Software
PPTX
A Whirldwind Tour of ASP.NET 5
PPTX
Domain events
PPTX
My Iraq Experience
PDF
Add Some DDD to Your ASP.NET MVC, OK?
PDF
Domain-Driven Design with ASP.NET MVC
PDF
Breaking Dependencies to Allow Unit Testing
PPTX
Improving The Quality of Existing Software
PPTX
Refactoring with SOLID Principles (FalafelCon 2013)
Finding Patterns in the Clouds - Cloud Design Patterns
Introducing domain driven design - dogfood con 2018
Most Useful Design Patterns
Improving the Design of Existing Software
Introducing ASP.NET Core 2.0
Decoupling with Domain Events
Improving the Quality of Existing Software
Improving the Quality of Existing Software
Breaking Dependencies to Allow Unit Testing - DevIntersection Spring 2016
Improving the Quality of Existing Software - DevIntersection April 2016
Breaking Dependencies to Allow Unit Testing
Improving the Quality of Existing Software
A Whirldwind Tour of ASP.NET 5
Domain events
My Iraq Experience
Add Some DDD to Your ASP.NET MVC, OK?
Domain-Driven Design with ASP.NET MVC
Breaking Dependencies to Allow Unit Testing
Improving The Quality of Existing Software
Refactoring with SOLID Principles (FalafelCon 2013)

Recently uploaded (20)

PPTX
sap open course for s4hana steps from ECC to s4
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Encapsulation theory and applications.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPT
Teaching material agriculture food technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Approach and Philosophy of On baking technology
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Big Data Technologies - Introduction.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
sap open course for s4hana steps from ECC to s4
Unlocking AI with Model Context Protocol (MCP)
Encapsulation theory and applications.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Teaching material agriculture food technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
20250228 LYD VKU AI Blended-Learning.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Approach and Philosophy of On baking technology
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Reach Out and Touch Someone: Haptics and Empathic Computing
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Programs and apps: productivity, graphics, security and other tools
Big Data Technologies - Introduction.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Agricultural_Statistics_at_a_Glance_2022_0.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...

Clean architecture with asp.net core by Ardalis

  • 1. Applying Clean Architecture to ASP.NET Core Apps STEVE SMITH ARDALIS.COM | @ARDALIS | STEVE@ARDALIS.COM MENTOR | TRAINER | COACH | FORCE MULTIPLIER Applying Clean Architecture to ASP.NET Core | @ardalis
  • 2. Welcome SLC-NET Folks! Applying Clean Architecture to ASP.NET Core | @ardalis
  • 3. Literally 10 minutes before starting… Applying Clean Architecture to ASP.NET Core | @ardalis
  • 4. Literally 10 minutes before starting… Applying Clean Architecture to ASP.NET Core | @ardalis
  • 5. Learn More After Today 1) Pluralsight – FREE in April 2020 ◦ Domain-Driven Design Fundamentals https://www.pluralsight.com/courses/domain-driven-design-fundamentals 2) Microsoft FREE eBook/Sample App (updated for .NET Core 3.1) ◦ eShopOnWeb eCommerce Sample https://ardalis.com/architecture-ebook 3) Contact me for mentoring/training for your company/team 4) Developer Career Mentoring at devBetter.com Applying Clean Architecture to ASP.NET Core | @ardalis
  • 6. Weekly Dev Tips Podcast and Newsletter (and stream)  Ardalis.com/tips  WeeklyDevTips.com Streaming at twitch.tv/ardalis Fridays Applying Clean Architecture to ASP.NET Core | @ardalis
  • 7. Questions HOPEFULLY YOU’LL KNOW THE ANSWERS WHEN WE’RE DONE Applying Clean Architecture to ASP.NET Core | @ardalis
  • 8. Why do we separate applications into multiple projects? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 9. What are some principles we can apply when organizing our software modules? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 10. How does the organization of our application’s solution impact coupling? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 11. What problems result from certain common approaches? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 12. How does Clean Architecture address these problems? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 13. How does ASP.NET Core help? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 16. Separation of Concerns Avoid mixing different code responsibilities in the same (method | class | project) Applying Clean Architecture to ASP.NET Core | @ardalis
  • 17. Separation of Concerns The Big Three™ Data Access Business Rules and Domain Model User Interface Applying Clean Architecture to ASP.NET Core | @ardalis
  • 18. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 19. Single Responsibility Works in tandem with Separation of Concerns Classes should focus on a single responsibility – a single reason to change. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 20. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 21. Following Don’t Repeat Yourself… Refactor repetitive code into functions Group functions into cohesive classes Group classes into folders and namespaces by  Responsibility  Level of abstraction  Etc. Further group class folders into projects Applying Clean Architecture to ASP.NET Core | @ardalis
  • 22. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 23. Invert (and inject) Dependencies Both high level classes and implementation-detail classes should depend on abstractions (interfaces). Applying Clean Architecture to ASP.NET Core | @ardalis
  • 24. Invert (and inject) Dependencies Classes should follow Explicit Dependencies Principle: Request all dependencies via their constructor Make your types honest, not deceptive Applying Clean Architecture to ASP.NET Core | @ardalis
  • 25. Invert (and inject) Dependencies Corollary: Abstractions/interfaces must be defined somewhere accessible by: Low level implementation services High level business services User interface entry points Applying Clean Architecture to ASP.NET Core | @ardalis
  • 26. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 27. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 28. Make the right thing easy and the wrong thing hard FORCE DEVELOPERS INTO A “PIT OF SUCCESS” Applying Clean Architecture to ASP.NET Core | @ardalis
  • 29. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 30. Make the right thing easy and the wrong thing hard. UI classes shouldn’t depend directly on infrastructure classes ◦ How can we structure our solution to help enforce this? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 31. Make the right thing easy and the wrong thing hard. Business/domain classes shouldn’t depend on infrastructure classes ◦ How can our solution design help? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 32. Make the right thing easy and the wrong thing hard. Repetition of (query logic, validation logic, policies, error handling, anything) is a problem ◦ What patterns can we apply to make avoiding repetition easier than copy/pasting? Applying Clean Architecture to ASP.NET Core | @ardalis
  • 33. “Classic” N-Tier Architecture OR N-LAYER Layer Layer Layer Applying Clean Architecture to ASP.NET Core | @ardalis
  • 34. Source: MSDN Website, 2001 Applying Clean Architecture to ASP.NET Core | @ardalis
  • 35. Transitive Dependencies DB Data Access Layer Business Logic Layer User Interface Layer Everything Depends on the database Applying Clean Architecture to ASP.NET Core | @ardalis
  • 36. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 37. Domain-Centric Design AND THE CLEAN ARCHITECTURE Core Business Logic Everything Else Applying Clean Architecture to ASP.NET Core | @ardalis
  • 38. Domain Model Not just business logic, but also: A model of the problem space composed of Entities, Interfaces, Services, and more. Interfaces define contracts for working with domain objects Everything in the application (including infrastructure and data access) depends on these interfaces and domain objects Applying Clean Architecture to ASP.NET Core | @ardalis
  • 39. Clean Architecture Onion Architecture Hexagonal Architecture Ports and Adapters Applying Clean Architecture to ASP.NET Core | @ardalis
  • 40. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 41. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 42. Clean Architecture “Rules” 1. You do not talk about Clean Architecture. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 43. Clean Architecture “Rules” 1. You do not talk about Clean Architecture. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 44. Clean Architecture “Rules” The Application Core contains the Domain Model Applying Clean Architecture to ASP.NET Core | @ardalis
  • 45. Clean Architecture “Rules” All projects depend on the Core project; dependencies point inward toward this core Applying Clean Architecture to ASP.NET Core | @ardalis
  • 46. Clean Architecture “Rules” Inner projects define interfaces; Outer projects implement them Applying Clean Architecture to ASP.NET Core | @ardalis
  • 47. Clean Architecture “Rules” Avoid direct dependency on the Infrastructure project (except from Integration Tests and possibly Startup.cs) Applying Clean Architecture to ASP.NET Core | @ardalis
  • 48. Clean Architecture Features Framework Independent ◦ You can use this architecture with ASP.NET (Core), Java, Python, etc. ◦ It doesn’t rely on any software library or proprietary codebase. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 49. Clean Architecture Features Database Independent ◦ The vast majority of the code has no knowledge of persistence details. ◦ This knowledge may exist in just one class, in one project that no other project references. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 50. Clean Architecture Features UI Independent ◦ Only the UI project cares about the UI. ◦ The rest of the system is UI-agnostic. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 51. Clean Architecture Features Testable ◦ Apps built using this approach, and especially the core domain model and its business rules, are easy to test. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 52. Refactoring to a Clean Architecture Best to start from a properly organized solution ◦ See https://github.com/ardalis/CleanArchitecture Next-best: Start from an application consisting of just a single project Most difficult: Large, existing investment in multi-layer architecture without abstractions or DI Applying Clean Architecture to ASP.NET Core | @ardalis
  • 53. The Core Project (domain model) Minimal dependencies – none on Infrastructure. What Goes in Core: Interfaces Entities Value Objects Aggregates Domain Services Domain Events Exceptions Specifications Event Handlers Applying Clean Architecture to ASP.NET Core | @ardalis
  • 54. The Infrastructure Project All dependencies on out-of-process resources. What Goes in Infrastructure: Repositories EF (Core) DbContext Web API Clients File System Accessors Email/SMS Sending Logging Adapters System Clock Other Services Cached Repositories Interfaces Applying Clean Architecture to ASP.NET Core | @ardalis
  • 55. The Web Project All dependencies on out-of-process resources. What Goes in Web: Controllers Views ViewModels Filters Binders Other Services Razor Pages ApiModels BindingModels Tag/Html Helpers Or Interfaces Applying Clean Architecture to ASP.NET Core | @ardalis
  • 56. Sharing Between Solutions: Shared Kernel Common Types May Be Shared Between Solutions. Will be referenced by Core project(s). Ideally distributed as Nuget Packages. What Goes in Shared Kernel: Base Entity Base Domain Event Base Specification Common Exceptions Common Interfaces Common Auth e.g. User class Common DI Common Logging Common Guard Clauses Applying Clean Architecture to ASP.NET Core | @ardalis
  • 57. Guard Clauses? BAD EXAMPLE public void ProcessOrder(Order order, Custom customer) { if(order != null) { if(customer != null) { // process order here } else { throw new ArgumentNullException(nameof(customer), customer); } } else { throw new ArgumentNullException(nameof(order), order); } } Applying Clean Architecture to ASP.NET Core | @ardalis
  • 58. Guard Clauses? public void ProcessOrder(Order order, Customer customer) { if(order == null) throw new ArgumentNullException(nameof(order), order); if(customer==null) throw new ArgumentNullException(nameof(customer), customer); // process order here } Applying Clean Architecture to ASP.NET Core | @ardalis
  • 59. Guard Clauses? Simple checks for input that use common rules and exceptions. Nuget Package: Ardalis.GuardClauses (https://github.com/ardalis/GuardClauses) Example: public void ProcessOrder(Order order, Customer customer) { Guard.Against.Null(order, nameof(order)); Guard.Against.Null(customer, nameof(customer)); // process order here } Applying Clean Architecture to ASP.NET Core | @ardalis
  • 60. Solution Structure – Clean Architecture Web Core Infrastructure Shared Kernel Unit Tests Functional Tests Integration Tests Applying Clean Architecture to ASP.NET Core | @ardalis
  • 61. Typical (Basic) Folder Structure Applying Clean Architecture to ASP.NET Core | @ardalis
  • 62. What belongs in actions/handlers? Controller Actions (or Page Handlers) should: 1) Accept task-specific types (ViewModel, ApiModel, BindingModel) 2) Perform and handle model validation (ideally w/filters) 3) “Do Work” (More on this in a moment) 4) Create any model type required for response (ViewModel, ApiModel, etc.) 5) Return an appropriate Result type (View, Page, Ok, NotFound, etc.) Applying Clean Architecture to ASP.NET Core | @ardalis
  • 63. “Do Work” – Option One Repositories and Entities 1) Get entity from an injected Repository 2) Work with the entity and its methods. 3) Update the entity’s state using the Repository Great for simple operations Great for CRUD work Requires mapping between web models and domain model within controller Applying Clean Architecture to ASP.NET Core | @ardalis
  • 64. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 65. “Do Work” – Option Two Work with an application service. 1) Pass ApiModel types to service 2) Service internally works with repositories and domain model types. 3) Service returns a web model type Better for more complex operations Application Service is responsible for mapping between models Keeps controllers lightweight, and with fewer injected dependencies Applying Clean Architecture to ASP.NET Core | @ardalis
  • 66. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 67. “Do Work” – Option Three Work with commands and a tool like Mediatr 1) Use ApiModel types that represent commands (e.g. RegisterUser) 2) Send model-bound instance of command to handler using _mediator.Send() No need to inject separate services to different controllers – Mediatr becomes only dependency. Applying Clean Architecture to ASP.NET Core | @ardalis
  • 68. Instantiate Appropriate Command Applying Clean Architecture to ASP.NET Core | @ardalis
  • 69. Resolve Command w/Model Binding Applying Clean Architecture to ASP.NET Core | @ardalis
  • 71. Resources Clean Architecture Solution Template https://github.com/ardalis/cleanarchitecture For Worker Services: https://github.com/ardalis/CleanArchitecture.WorkerService Online Courses (Pluralsight and DevIQ) • SOLID Principles of OO Design https://ardalis.com/ps-stevesmith • N-Tier Architecture in C# https://ardalis.com/ps-stevesmith • DDD Fundamentals https://ardalis.com/ps-stevesmith • ASP.NET Core Quick Start http://aspnetcorequickstart.com/ Weekly Dev Tips Podcast http://www.weeklydevtips.com/ Microsoft Architecture eBook/sample http://aka.ms/WebAppArchitecture Group Coaching for Developers https://devbetter.com/ Applying Clean Architecture to ASP.NET Core | @ardalis
  • 72. Thanks! Steve Smith steve@ardalis.com @ardalis Applying Clean Architecture to ASP.NET Core | @ardalis

Editor's Notes

  • #15: Photo by Rodrigo Soares on Unsplash
  • #30: Otherwise they’re likely to end up in …
  • #39: Working on such systems, with all of their tight coupling, can be draining…
  • #65: Often worthwhile to split tests into separate projects by type. Can make it easier to run certain sets of tests based on context/environment.