惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
爱范儿
爱范儿
小众软件
小众软件
MyScale Blog
MyScale Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
C
Check Point Blog
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building Scalable Backends with DDD & Domain Events .NET C#
Pathum Kumar · 2026-05-12 · via DEV Community

Over the last few days, I sepent time refining architectural patterns in a modular .NET backend centered around payroll processing, approvals, and workflow-driven operations.

One area I focused on heavily was aggregate design and state protection. Instead of exposing mutable collections directly from entities, aggregates internally manage their own state exposing read-only access externally.

private readonly List _monthlyAllowance = new();

public IReadOnlyCollection
MonthlyAllowances => _monthlyAllowance ;

This prevents external code from bypassing aggregate rules;

employee.MonthlyAllowances.Add(...)

while still allowing controlled state transitions through aggregate methods:

public void AddMonthlyAllowance(MonthlyAllowance allowance)
{
if(_monthlyAllowances.Any(x => x.PayrollMonth == allowance.PayrollMonth && x.SalaryItemId == allowance.SalaryItemId))
{
throw new DuplicateMonthlyAllowanceException();
}

_monthlyAllowances.Add(allowance);

}

Another major refinement was moving workflow reactions out of aggregates and into domain event handlers. Rather than aggregates directly triggering notifications or workflows, aggregates simply raise business events.

public void AddMonthlyAllowance(MonthlyAllowance allowance)
{
_monthlyAllowances.Add(allowance);

AddDomainEvent(new MonthlyAllowanceSubmittedForApprovalDomainEvent(Id, allowance.Id, EmployeeName));

}

The aggregate only represents business behavior. Reactions happen externally through handlers:

public sealed class
MonthlyAllowanceSubmittedForApprovalDomainEventHandler
: INotificationHandler<
MonthlyAllowanceSubmittedForApprovalDomainEvent>
{
public async Task Handle(
MonthlyAllowanceSubmittedForApprovalDomainEvent notification,
CancellationToken cancellationToken)
{
await _notificationRepository.AddAsync(
new HrNotification(
"Allowance Approval Required",
$"Approval required for {notification.EmployeeName}",
"HR_MANAGER"));
}
}

This separation dramatically reduces coupling and keeps aggregates focused on business invariants instead of orchestration concerns.

I also revisited feature-based application organization. As systems scale, grouping code by business capability rather than technical type becomes significantly easier to maintain.

Instead of:

Application
├── Commands
├── Queries
├── Handlers

feature-oriented organization tends to scale better:

Application
└── EmployeePayrollProfile
├── Commands
├── Queries
├── EventHandlers
├── Validators
└── DTOs

Another area that improved domain clarity considerably was replacing primitive-heavy models with explicit value objects.

Instead of:

public int cYear;
public int cMonth;
public double Amount;

the model becomes much more expressive:

public PayrollMonth PayrollMonth { get; }
public Money Amount { get; }

with validation centralized inside the value object itself:

public sealed class PayrollMonth : ValueObject
{
public int Year { get; }
public int Month { get; }

public PayrollMonth(int year, int month)
{
    if (month < 1 || month > 12)
        throw new DomainException(
            "Invalid payroll month.");

    Year = year;
    Month = month;
}

Enter fullscreen mode Exit fullscreen mode

}

Approval workflows were another interesting area. Instead of tightly coupling approvals to controllers or services, workflows are modeled through state transitions and domain events:

allowance.Approve();

AddDomainEvent(
new MonthlyAllowanceApprovedDomainEvent(...));

This allows notifications, audit trails, projections, escalations, and future integrations to evolve independently without modifying aggregate behavior.

I also spent time evaluating architectural tradeoffs between:

in-process messaging and distributed messaging
modular monoliths and microservices
domain events and integration events
feature-based organization and layer-only organization

One thing that consistently becomes clear in larger backend systems is that many scalability and maintainability problems originate from coupling and boundary design long before infrastructure becomes the bottleneck.

For modular monolith architectures in particular, using MediatR with domain events provides a clean middle ground: maintaining loose coupling and workflow flexibility without introducing distributed-system complexity too early.

Current stack and concepts:
.NET 8 • EF Core • MediatR • DDD • CQRS-style patterns • Modular Monolith Architecture • Event-Driven Workflows

dotnet #csharp #softwarearchitecture #ddd #backend #cleanarchitecture #modularmonolith #mediatr #cqrs #enterprisesoftware