Clean Architecture in .NET Articles, Tutorials & News
Clean Architecture in .NET articles, tutorials, and news from the DotNetNews archive.
220 articles Updated Page 6 of 9
Clean Architecture in .NET articles, tutorials, and news from the DotNetNews archive.
Clean Architecture in .NET articles
Page 6 of 9
Newest first
-
How to Apply Global Query Filters in EF Core — A Complete Real-World Guide (Clean Architecture, .NET
medium.com Issue #322
Part 1 of 2 — Enterprise-Level Implementation + Real Project Code
-
EF Core pitfalls and .NET memory tuning
DotNetNews Issue #320
This issue covers EF Core lazy loading and deadlocks, Span and GC guidance, mapping tradeoffs, and an enterprise move from .NET Framework to .NET 8.
-
Avoiding the “God Controller”: How to Refactor Your ASP.NET Core APIs
medium.com Issue #319
Transform your large controllers into clean, testable, and maintainable code the right way.
-
EF Core Performance Optimization Challenge | 233× Faster with Codes.
medium.com Issue #318
How to squeeze major performance gains from Entity Framework Core (EF Core) in .NET 9 using Clean Architecture, benchmarks &…
-
11 No-Drama Ways to Organize Minimal API Endpoints in Clean Architecture (with Copy-Paste Code)
medium.com Issue #318
If you want the full source code, join our community: Here
-
Solve Logging as a Cross-Cutting Concern with MediatR in .NET 9 (Clean, Composable, Copy-Paste)
medium.com Issue #318
Logging shouldn’t leak into every handler like glitter after a craft project. Use MediatR pipeline behaviors to keep logging centralized…
-
9 Practical Ways to Speed Up EF Core with Compiled Queries in .NET 9 (Clean Architecture Friendly)
medium.com Issue #317
If you want the full source code, join our community: Here
-
How To Add Fault Handling In ASP.NET Core With Polly | Clean Architecture, .NET 9.
medium.com Issue #317
Part 1 — Introduction, Architecture, and Project Setup
-
How To Implement Validation With MediatR And FluentValidation | Clean Architecture, DDD, .NET
medium.com Issue #316
Validation isn’t glamorous — but it’s the guardian of your system’s integrity. It keeps invalid data from creeping into your domain…
-
11 Practical Ways to Write Faster SQL with Dapper in .NET 9 (Clean Architecture, Copy-Paste Ready)
medium.com Issue #316
If you want the full source code, join our community: Here
-
⚡ CQRS Doesn’t Have To Be Complicated | Clean Architecture, .NET 9 (With Code)
medium.com Issue #315
“Don’t overengineer. CQRS is about clarity — not complexity.”
-
.NET 10: The Next Leap in Developer Experience
blog.devops.dev Issue #315
A New Era of Performance, Cloud-Native Power, and Developer Empowerment Continue reading on DevOps.dev »
-
Liskov Substitution Principle (LSP) in C#: Inheritance Done Right
c-sharpcorner.com Issue #315
Master the Liskov Substitution Principle (LSP) in C# and write robust, maintainable code! This article dives deep into LSP, demonstrating how to design inheritance hierarchies where derived classes se...
-
Repository Pattern With Entity Framework Core | Clean Architecture, .NET 9
medium.com Issue #314
“A repository is like a well-organized library — it hides the messy details of where and how the books (data) are stored, so readers (the…
-
ASP.NET Core Architecture Patterns: CQRS, DDD, Clean Architecture Mastery (Part -19 of 40)
c-sharpcorner.com Issue #313
Master ASP.NET Core architecture with this comprehensive guide! Explore CQRS, DDD, and Clean Architecture to build scalable, maintainable enterprise systems. Learn through real-world e-commerce exampl...
-
Clean Architecture with a Document DB, Minimal APIs, and CQRS in .NET 9 (Copy-Paste Starter Kit)
medium.com Issue #313
If you want the full source code, join our community: Here
-
️ How to Write Architecture Tests for Clean Architecture with .NET 9
medium.com Issue #311
Maintaining a Clean Architecture isn’t just about writing layered code; it’s about ensuring that those layers stay clean, that…
-
How To Use Domain-Driven Design (DDD) in Clean Architecture — With C# and Real Examples.
medium.com Issue #309
When developers talk about scalable software design, two architectural patterns often come up: Clean Architecture and Domain-Driven…
-
Writing Future-Proof C# Code: How to Build Software That Lasts
medium.com Issue #309
Most developers write code to make something work. But great developers write code to make something last.
-
The Power of Abstractions: Building Flexible Code in .NET
medium.com Issue #309
At some point in your .NET journey, you’ll run into a piece of code that “just works” — until a new requirement breaks everything. That’s…
-
Domain Validation With .NET | Clean Architecture, DDD, .NET 9.
medium.com Issue #309
In Domain-Driven Design (DDD), validation is not just about checking if a field is empty or an email is valid — it’s about protecting the… Continue reading on Activated Thinker »
-
What Is an Entity? | Domain-Driven Design, Clean Architecture, and .NET 9.
medium.com Issue #307
When you first dive into Domain-Driven Design (DDD) and Clean Architecture, one of the first concepts you’ll encounter is the Entity.
-
Clean Architecture in .NET Core
c-sharpcorner.com Issue #306
This article provides a practical guide with code examples, demonstrating how to separate concerns using the Dependency Rule. Learn to structure your .NET Core projects effectively by isolating domain...
-
A New Era of Developer Productivity with Vibe Coding with C# 13
c-sharpcorner.com Issue #306
C# 13 and vibe coding revolutionize developer productivity by reducing boilerplate, simplifying patterns, and promoting clean architecture. Learn how primary constructors, pattern matching, intercepto...
-
EF Core DBContext Entities configuration refactoring
medium.com Issue #306
I’ve noticed that many .NET projects have one thing in common — a very messy DbContext full of entity configuration code.