EasyEvs - Easy event sourcing in .NET

Sat, Sep 4, 2021 One-minute read

How to start with EventStore in .NET and not fail trying

Motivation

For some time now I have been using Greg Young’s EventStore on (almost) every new project I started.

Why?

  • Because I like event sourcing
  • Because events are not ephemeral (like when you use queues)
  • Because is fun to play with technologies

So I decided to create EasyEvs to make my life easier and why not yours?

The idea is to have a framework that will allow you to start with event sourcing in minutes.

How? Let’s dig into a series

  • Installing and publishing single events Series 1
  • How to consume events Series 2
  • How to add actions that can be executed before, after or before and after Series 3