Skip to content

Latest commit

 

History

History

NBB.EventStore

NBB.EventStore

This package provides an implementation of the Event Store abstractions as defined in package NBB.EventStore.Abstractions.

The package also provides abstractions for the event and snapshot repositories.

NuGet install

dotnet add package NBB.EventStore

Usage

The event store must be registered in the DI container.

services.AddEventStore()
    .WithNewtownsoftJsonEventStoreSeserializer()
    ...