Tag “Dapper”

image from Dapper - JSON type custom mapper

Dapper - JSON type custom mapper

Let’s assume that we have such read model: public class ProductReadModel { public int Id { get; private set; } public string Name { get; private set; } public int CategoryId { get; private set; } public Category Category { get; private set; } …

read more ➞
image from CQRS - Third step - Simple read model

CQRS - Third step - Simple read model

This post series is driven by my lightning talk about how to introduce CQRS to your project. I thought that would be good to explain this topic further for people who won’t be attending my presentation. I will write about: splitting code to …

read more ➞