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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

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
CQRS with Separate Read/Write Models in .NET Core
Hossein Esmati · 2026-06-26 · via DEV Community

Hossein Esmati

This article is part of the Comprehensive Guide to Microservices Architecture in .NET Core, Cloud and Azure series.

Understanding CQRS

Command Query Responsibility Segregation (CQRS) is an architectural pattern that separates read operations (queries) from write operations (commands).

Benefits and Trade-offs

Advantages:

  • Independent Scaling: Scale read and write workloads separately based on demand
  • Optimized Performance: Denormalized read models eliminate complex joins
  • Flexible Querying: Create multiple read models tailored to different query patterns
  • Technology Diversity: Use different databases for reads (e.g., Elasticsearch) and writes (e.g., PostgreSQL)

Challenges:

  • Eventual Consistency: Read model updates lag behind write operations
  • Increased Complexity: Maintaining separate models and synchronization logic
  • Data Duplication: Same data exists in multiple forms across models
  • Debugging Difficulty: Tracking issues across distributed components

When to Use CQRS:

  • High-traffic systems with significantly different read and write patterns
  • Applications requiring multiple specialized views of the same data
  • Systems where read performance is critical (reporting, analytics)
  • Domains with complex business logic that benefits from separation of concerns

When to Avoid CQRS:

  • Simple CRUD applications with balanced read/write operations
  • Small-scale systems where the added complexity isn't justified
  • Teams unfamiliar with eventual consistency patterns
  • Projects with tight deadlines and limited resources

Write Model (Command Side)

The write model enforces business rules and maintains transactional consistency:

public class OrderWriteModel
{
    public Guid Id { get; set; }
    public Guid CustomerId { get; set; }
    public List<OrderLine> Lines { get; set; }

    // Encapsulates business logic
    public void AddLine(Guid productId, int quantity, decimal price)
    {
        if (quantity <= 0)
            throw new DomainException("Quantity must be positive");

        Lines.Add(new OrderLine(productId, quantity, price));
    }
}

Read Model (Query Side)

The read model is denormalized for optimal query performance, containing pre-computed and aggregated data:

public class OrderReadModel
{
    public Guid Id { get; set; }
    public string CustomerName { get; set; }
    public string CustomerEmail { get; set; }
    public List<OrderItemReadModel> Items { get; set; }
    public decimal TotalAmount { get; set; }
    public string Status { get; set; }
    public DateTime CreatedAt { get; set; }

    // Denormalized fields eliminate joins at query time
    public string ShippingAddress { get; set; }
    public string PaymentMethod { get; set; }
    public DateTime? ShippedAt { get; set; }
}

public class OrderItemReadModel
{
    public string ProductName { get; set; }
    public string ProductImageUrl { get; set; }
    public int Quantity { get; set; }
    public decimal UnitPrice { get; set; }
    public decimal LineTotal { get; set; }
}

Command Handler

Command handlers process write operations and update the write model:

public class CreateOrderCommandHandler : IRequestHandler<CreateOrderCommand, Guid>
{
    private readonly OrderWriteDbContext _writeDb;
    private readonly IEventPublisher _eventPublisher;

    public CreateOrderCommandHandler(
        OrderWriteDbContext writeDb,
        IEventPublisher eventPublisher)
    {
        _writeDb = writeDb;
        _eventPublisher = eventPublisher;
    }

    public async Task<Guid> Handle(
        CreateOrderCommand command,
        CancellationToken cancellationToken)
    {
        var order = new OrderWriteModel
        {
            Id = Guid.NewGuid(),
            CustomerId = command.CustomerId,
            Lines = new List<OrderLine>()
        };

        foreach (var item in command.Items)
        {
            order.AddLine(item.ProductId, item.Quantity, item.Price);
        }

        _writeDb.Orders.Add(order);
        await _writeDb.SaveChangesAsync(cancellationToken);

        // Publish integration event to synchronize read model
        await _eventPublisher.PublishAsync(
            new OrderCreatedEvent(order.Id, order.CustomerId));

        return order.Id;
    }
}

Event Handler

Event handlers listen for changes and update the read model asynchronously:

public class OrderCreatedEventHandler : IEventHandler<OrderCreatedEvent>
{
    private readonly OrderReadDbContext _readDb;
    private readonly ICustomerServiceClient _customerClient;
    private readonly IProductServiceClient _productClient;
    private readonly IOrderServiceClient _orderServiceClient;

    public OrderCreatedEventHandler(
        OrderReadDbContext readDb,
        ICustomerServiceClient customerClient,
        IProductServiceClient productClient,
        IOrderServiceClient orderServiceClient)
    {
        _readDb = readDb;
        _customerClient = customerClient;
        _productClient = productClient;
        _orderServiceClient = orderServiceClient;
    }

    public async Task Handle(OrderCreatedEvent @event)
    {
        // Fetch data from various sources for denormalization
        var customer = await _customerClient.GetCustomerAsync(@event.CustomerId);
        var order = await _orderServiceClient.GetOrderAsync(@event.OrderId);

        var productIds = order.Lines.Select(l => l.ProductId).ToList();
        var products = await _productClient.GetProductsAsync(productIds);

        // Build denormalized read model with all necessary data
        var readModel = new OrderReadModel
        {
            Id = @event.OrderId,
            CustomerName = customer.Name,
            CustomerEmail = customer.Email,
            Items = order.Lines.Select(line => new OrderItemReadModel
            {
                ProductName = products.First(p => p.Id == line.ProductId).Name,
                ProductImageUrl = products.First(p => p.Id == line.ProductId).ImageUrl,
                Quantity = line.Quantity,
                UnitPrice = line.Price,
                LineTotal = line.Quantity * line.Price
            }).ToList(),
            TotalAmount = order.Lines.Sum(l => l.Quantity * l.Price),
            Status = "Created",
            CreatedAt = DateTime.UtcNow
        };

        _readDb.Orders.Add(readModel);
        await _readDb.SaveChangesAsync();
    }
}

Query Handler

Query handlers retrieve data from the optimized read model:

public class GetOrderQueryHandler : IRequestHandler<GetOrderQuery, OrderReadModel>
{
    private readonly OrderReadDbContext _readDb;

    public GetOrderQueryHandler(OrderReadDbContext readDb)
    {
        _readDb = readDb;
    }

    public async Task<OrderReadModel> Handle(
        GetOrderQuery query,
        CancellationToken cancellationToken)
    {
        // Execute fast query on denormalized data with no joins required
        return await _readDb.Orders
            .Include(o => o.Items)
            .FirstOrDefaultAsync(o => o.Id == query.OrderId, cancellationToken);
    }
}

Database Contexts

Separate database contexts allow independent optimization strategies for reads and writes:

Write Database Context

public class OrderWriteDbContext : DbContext
{
    public DbSet<OrderWriteModel> Orders { get; set; }

    public OrderWriteDbContext(DbContextOptions<OrderWriteDbContext> options)
        : base(options)
    {
    }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        // Minimal indexes optimized for write operations
        modelBuilder.Entity<OrderWriteModel>()
            .HasIndex(o => o.CustomerId);
    }
}

Read Database Context

public class OrderReadDbContext : DbContext
{
    public DbSet<OrderReadModel> Orders { get; set; }

    public OrderReadDbContext(DbContextOptions<OrderReadDbContext> options)
        : base(options)
    {
    }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        // Multiple indexes optimized for various query patterns
        modelBuilder.Entity<OrderReadModel>()
            .HasIndex(o => o.CustomerEmail);

        modelBuilder.Entity<OrderReadModel>()
            .HasIndex(o => o.CreatedAt);

        modelBuilder.Entity<OrderReadModel>()
            .HasIndex(o => o.Status);

        // Mark as read-only to prevent accidental migrations
        modelBuilder.Entity<OrderReadModel>()
            .ToTable("OrderReadModels", t => t.ExcludeFromMigrations());
    }
}