image from Event Storming - retrospection

Event Storming - retrospection

Event Storming is a workshop which makes it easier to understand business domain and to translate it into an architecture of the application. It was first described by Alberto Brandolini in his blog post, in November 2013. I won’t elaborate on …

read more ➞
image from CQRS in 4 steps - presentation

CQRS in 4 steps - presentation

I finished work on my presentation about “CQRS in 4 steps” which will be shown during 4Developers conference. You can find slides from my presentation on Slideshare. Also, you can check my blog posts: splitting code to commands and queries …

read more ➞
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 ➞