EventStore.Client 21.2.1

Suggested Alternatives

EventStore.Client.Grpc.Streams

There is a newer version of this package available.
See the version list below for details.
dotnet add package EventStore.Client --version 21.2.1
                    
NuGet\Install-Package EventStore.Client -Version 21.2.1
                    
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="EventStore.Client" Version="21.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EventStore.Client" Version="21.2.1" />
                    
Directory.Packages.props
<PackageReference Include="EventStore.Client" />
                    
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 EventStore.Client --version 21.2.1
                    
#r "nuget: EventStore.Client, 21.2.1"
                    
#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.
#addin nuget:?package=EventStore.Client&version=21.2.1
                    
Install EventStore.Client as a Cake Addin
#tool nuget:?package=EventStore.Client&version=21.2.1
                    
Install EventStore.Client as a Cake Tool

The client API for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.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 is compatible.  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 (79)

Showing the top 5 NuGet packages that depend on EventStore.Client:

Package Downloads
AspNetCore.HealthChecks.EventStore

HealthChecks.EventStore is the health check package for EventStore, using the TCP Client.

Cqrs.EventStore

Use Greg Young's event store as the Event Store in CQRS.NET

Cqrs.Ninject.EventStore

Use Ninject as your IoC container of choice with Greg Young's Event Store for CQRS.NET

SoftwarePioniere.Fx.EventStore

Software Pioniere Fx Event Store Library

EventFlow.EventStores.EventStore

# EventFlow <table border=0 cellpadding=0 cellspacing=0> <tr> <td width=25%> <img src=./icon-128.png /> </td> <td width=25%> <p> <a href=https://www.nuget.org/packages/EventFlow/><img src=https://img.shields.io/nuget/v/EventFlow.svg?style=flat /></a> </p> <p> <a href=https://docs.geteventflow.net/?badge=latest><img src=https://readthedocs.org/projects/eventflow/badge/?version=latest /></a> </p> </td> <td width=25%> <p> <a href=https://ci.appveyor.com/project/eventflow/eventflow><img src=https://ci.appveyor.com/api/projects/status/51yvhvbd909e4o82/branch/develop?svg=true /></a> </p> <p> <a href=https://gitter.im/rasmus/EventFlow?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge><img src=https://badges.gitter.im/Join Chat.svg /></a> </p> <!-- <p> <a href=https://codecov.io/github/eventflow/EventFlow?branch=develop><img src=https://codecov.io/github/eventflow/EventFlow/coverage.svg?branch=develop /></a> </p> --> </td> <td width=25%> Think EventFlow is great,<br/> <a href=https://www.paypal.me/rasmusnu>buy me a cup of coffee</a> </td> </tr> </table> NuGet feeds - Official releases: https://www.nuget.org/packages/EventFlow/ - Builds: https://ci.appveyor.com/nuget/eventflow EventFlow is a basic CQRS+ES framework designed to be easy to use. Have a look at our [getting started guide](https://docs.geteventflow.net/GettingStarted.html), the [do’s and don’ts](https://docs.geteventflow.net/DosAndDonts.html) and the [FAQ](https://docs.geteventflow.net/FAQ.html). ### Features * **CQRS+ES framework** * **Async/await first:** Every part of EventFlow is written using async/await. * **Highly configurable and extendable** * **Easy to use** * **No use of threads or background workers** * **Cancellation:** All methods that does IO work or might delay execution (due to retries), takes a `CancellationToken` argument to allow you to cancel the operation ### Examples * **[Complete](#complete-example):** Shows a complete example on how to use EventFlow with in-memory event store and read models in a relatively few lines of code * **Shipping:** To get a more complete example of how EventFlow _could_ be used, have a look at the shipping example found here in the code base. The example is based on the shipping example from the book Domain-Driven Design - Tackling Complexity in the Heart of Software by Eric Evans. Its _in-progress_, but should provide inspiration on how to use EventFlow on a larger scale. If you have ideas and/or comments, create a pull request or an issue

GitHub repositories (16)

Showing the top 16 popular GitHub repositories that depend on EventStore.Client:

Repository Stars
kurrent-io/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
eventflow/EventFlow
Async/await first CQRS+ES and DDD framework for .NET
PacktPublishing/Hands-On-Domain-Driven-Design-with-.NET-Core
Hands-On Domain-Driven Design with .NET Core, published by Packt
mizrael/SuperSafeBank
Sample Event Sourcing implementation with .NET Core
VeritasSoftware/AspNetCore.ApiGateway
Framework for an API Gateway endorsed by the .NET Foundation as revolutionary!
yreynhout/AggregateSource
Lightweight infrastructure for doing eventsourcing using aggregates
elbandit/PPPDDD
Sample code for the book Principles, Practices and Patterns of Domain-Driven Design
OKTAYKIR/EventFlow.Example
DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 2.2 and include docker compose file.
alexeyzimarev/ddd-book
Hands-on DDD with C# book code
charlessolar/DDD.Enterprise.Example
An example of an enterprise-ready architecture built with NServicebus, GetEventStore, RabbitMq, and ServiceStack
BitTacklr/Projac
A set of .NET projection libraries
dasiths/NEventLite
NEventLite - An extensible lightweight library for .NET that manages the Aggregate lifecycle in an Event Sourced system. Supports Event and Snapshot storage providers like EventStore/Redis or SQL Server. Built with dependency injection in mind and seamlessly integrates with AspNetCore.
MoienTajik/MediatrTutorial
CQRS implementation in ASP.NET Core using MediatR in .NET 5
mastoj/CQRSShop
Simple CQRS and eventsourcing with eventstore and elasticsearch
mat-mcloughlin/PatientMangement
A simple example of how to build an event sourced application
Version Downloads Last updated
22.0.0 592,531 11/18/2022 22.0.0 is deprecated because it is no longer maintained.
22.0.0-preview 27,528 2/3/2022 22.0.0-preview is deprecated because it is no longer maintained.
21.2.2 991,996 1/18/2022 21.2.2 is deprecated because it is no longer maintained.
21.2.1 80,221 9/24/2021 21.2.1 is deprecated because it is no longer maintained.
21.2.1-preview 569 8/26/2021 21.2.1-preview is deprecated because it is no longer maintained.
21.2.0 434,574 3/12/2021 21.2.0 is deprecated because it is no longer maintained.
20.10.0 192,308 12/16/2020 20.10.0 is deprecated because it is no longer maintained.
20.6.1 348,886 9/29/2020 20.6.1 is deprecated because it is no longer maintained.
20.6.0 67,038 6/9/2020 20.6.0 is deprecated because it is no longer maintained.
20.6.0-rc 805 5/15/2020 20.6.0-rc is deprecated because it is no longer maintained.
6.0.0-preview3 6,523 3/10/2020 6.0.0-preview3 is deprecated because it is no longer maintained.
6.0.0-preview2 8,069 1/17/2020 6.0.0-preview2 is deprecated because it is no longer maintained.
6.0.0-preview1 756 12/16/2019 6.0.0-preview1 is deprecated because it is no longer maintained.
5.0.12 96,117 8/12/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 103,519 3/31/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 24,663 3/18/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 486,135 7/8/2020 5.0.9 is deprecated because it is no longer maintained.
5.0.8 286,626 3/27/2020 5.0.8 is deprecated because it is no longer maintained.
5.0.6 271,892 2/19/2020 5.0.6 is deprecated because it is no longer maintained.
5.0.5 333,668 11/15/2019 5.0.5 is deprecated because it is no longer maintained.
5.0.2 1,066,146 7/24/2019 5.0.2 is deprecated because it is no longer maintained.
5.0.1 541,535 2/15/2019 5.0.1 is deprecated because it is no longer maintained.
5.0.0-rc4 910 2/11/2019 5.0.0-rc4 is deprecated because it is no longer maintained.
5.0.0-rc3 1,545 1/28/2019 5.0.0-rc3 is deprecated because it is no longer maintained.
5.0.0-rc2 1,599 1/9/2019 5.0.0-rc2 is deprecated because it is no longer maintained.
5.0.0-rc1 1,069 12/14/2018 5.0.0-rc1 is deprecated because it is no longer maintained.
4.1.4 3,715 7/25/2019 4.1.4 is deprecated because it is no longer maintained.
4.1.1 101,637 4/30/2018 4.1.1 is deprecated because it is no longer maintained.
4.1.1-rc1 1,891 4/13/2018 4.1.1-rc1 is deprecated because it is no longer maintained.
4.1.0 50,627 1/24/2018 4.1.0 is deprecated because it is no longer maintained.
4.0.3 60,368 10/2/2017 4.0.3 is deprecated because it is no longer maintained.
4.0.2 44,822 9/15/2017 4.0.2 is deprecated because it is no longer maintained.
4.0.2-rc1 1,643 7/31/2017 4.0.2-rc1 is deprecated because it is no longer maintained.
4.0.1-rc1 2,561 6/6/2017 4.0.1-rc1 is deprecated because it is no longer maintained.
4.0.0 52,305 3/23/2017 4.0.0 is deprecated because it is no longer maintained.
4.0.0-rc2 1,515 3/13/2017 4.0.0-rc2 is deprecated because it is no longer maintained.
4.0.0-rc1 1,776 2/22/2017 4.0.0-rc1 is deprecated because it is no longer maintained.
3.9.5 66,599 4/19/2017 3.9.5 is deprecated because it is no longer maintained.
3.9.4 31,613 12/23/2016 3.9.4 is deprecated because it is no longer maintained.
3.9.3 10,362 12/9/2016 3.9.3 is deprecated because it is no longer maintained.
3.9.2 125,673 10/17/2016 3.9.2 is deprecated because it is no longer maintained.
3.9.0 17,852 8/30/2016 3.9.0 is deprecated because it is no longer maintained.
3.8.0 14,859 7/15/2016 3.8.0 is deprecated because it is no longer maintained.
3.7.0 8,872 6/29/2016 3.7.0 is deprecated because it is no longer maintained.
3.6.3 11,032 5/20/2016 3.6.3 is deprecated because it is no longer maintained.
3.6.2 2,704 5/12/2016 3.6.2 is deprecated because it is no longer maintained.
3.6.0 4,788 4/25/2016 3.6.0 is deprecated because it is no longer maintained.
3.5.2 22,855 3/7/2016 3.5.2 is deprecated because it is no longer maintained.
3.5.0 7,752 2/27/2016 3.5.0 is deprecated because it is no longer maintained.
3.4.0 20,172 12/18/2015 3.4.0 is deprecated because it is no longer maintained.
3.3.1 20,243 10/12/2015 3.3.1 is deprecated because it is no longer maintained.
3.2.1 16,377 9/9/2015 3.2.1 is deprecated because it is no longer maintained.
3.2.0 1,902 9/6/2015 3.2.0 is deprecated because it is no longer maintained.
3.0.2 110,166 3/9/2015 3.0.2 is deprecated because it is no longer maintained.
3.0.2-prerelease 1,819 2/24/2015 3.0.2-prerelease is deprecated because it is no longer maintained.
3.0.1 30,801 10/24/2014 3.0.1 is deprecated because it is no longer maintained.
3.0.0 38,556 9/17/2014 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc9 1,744 8/19/2014 3.0.0-rc9 is deprecated because it is no longer maintained.
3.0.0-rc2 3,492 3/20/2014 3.0.0-rc2 is deprecated because it is no longer maintained.
2.0.2 67,093 8/2/2013 2.0.2 is deprecated because it is no longer maintained.
2.0.1 1,760 8/1/2013 2.0.1 is deprecated because it is no longer maintained.
2.0.0 3,185 7/19/2013 2.0.0 is deprecated because it is no longer maintained.
1.1.0 3,362 3/28/2013 1.1.0 is deprecated because it is no longer maintained.
1.1.0-rc2 1,462 3/22/2013 1.1.0-rc2 is deprecated because it is no longer maintained.
1.1.0-rc1 1,515 3/6/2013 1.1.0-rc1 is deprecated because it is no longer maintained.
1.0.3-prerelease 1,500 2/18/2013 1.0.3-prerelease is deprecated because it is no longer maintained.
1.0.1 6,824 2/11/2013 1.0.1 is deprecated because it is no longer maintained.
1.0.1-prerelease 1,435 2/11/2013 1.0.1-prerelease is deprecated because it is no longer maintained.
1.0.0 11,462 1/21/2013 1.0.0 is deprecated because it is no longer maintained.