NStore.Domain 1.4.0

dotnet add package NStore.Domain --version 1.4.0
                    
NuGet\Install-Package NStore.Domain -Version 1.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NStore.Domain" Version="1.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NStore.Domain" Version="1.4.0" />
                    
Directory.Packages.props
<PackageReference Include="NStore.Domain" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NStore.Domain --version 1.4.0
                    
#r "nuget: NStore.Domain, 1.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NStore.Domain@1.4.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NStore.Domain&version=1.4.0
                    
Install as a Cake Addin
#tool nuget:?package=NStore.Domain&version=1.4.0
                    
Install as a Cake Tool

<img src="logo/logo.png" alt="logo" height="120" align="right" />

NStore

(Yet Another) Opinionated Event Sourcing Library

NStore started as a playground for experimenting with .net Standard, async and a simple API for a Sql/NoSql backed EventStore.

After years of experience running NEventStore in production we wrote NStore from scratch with a simpler and extensible API.

CI Status

Build server Platform Build Status
AppVeyor Windows <img src="https://ci.appveyor.com/api/projects/status/github/proximosrl/nstore?svg=true" alt="Build status" >
GH Actions Linux <img src="https://github.com/ProximoSrl/NStore/workflows/NStore%20CI/badge.svg" alt="Build status" >
Azdo Windows <img src="https://dev.azure.com/gianmariaricci/Public/_apis/build/status/130" alt="Build status" >

Quickstart

Setup the streams factory

var streams = new StreamsFactory(new InMemoryPersistence());

open the stream

var post = streams.Open("post/123");

append new data

await post.AppendAsync(new Favorited("users/200", DateTime.UtcNow));

read the stream

await post.ReadAsync(chunk =>
{
    Console.WriteLine($"{chunk.PartitionId} #{chunk.Index} => {chunk.Payload}");
    return Subscription.Continue;
});

Process the stream

var favs = await post.AggregateAsync<UniqueFavs>();

Console.WriteLine($"{favs.Count} users added '{post.Id}' as favorite");

Full source at src/NStore.Quickstart/Program.cs


Learn

The source comes with a Sample App to illustrate some basic stuff you can do.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NStore.Domain:

Package Downloads
NStore.Tpl

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.0 50 8/21/2026
1.3.0 186 7/15/2026
1.3.0-sync-read0003 150 5/15/2026
1.3.0-codex-poller-at-0004 135 7/15/2026
1.3.0-codex-poller-at-0002 131 7/13/2026
1.3.0-codex-poller-at-0001 140 7/13/2026
1.3.0-alpha0004 130 7/15/2026
1.2.0 188 5/15/2026
1.1.0 236 4/20/2026
1.1.0-fix-poller0031 148 4/20/2026
1.1.0-fix-poller0030 138 4/20/2026
1.1.0-fix-poller0029 157 4/13/2026
1.0.0 600 2/20/2026
1.0.0-beta0003 155 2/20/2026
1.0.0-beta0002 155 2/20/2026
1.0.0-beta0000 151 2/19/2026
0.22.0-perfs0033 164 2/11/2026
0.22.0-perfs0032 154 2/10/2026
0.22.0-perfs0028 149 2/10/2026
0.22.0-perfs0024 150 2/9/2026
Loading failed