269 packages tagged with “EventStore”
The GRPC client API for Event Store Streams. Get the open source or commercial versions of Event Store server from https://eventstore.com/
The base GRPC client library for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/
The GRPC client API for Event Store Persistent Subscriptions. Get the open source or commercial versions of Event Store server from https://eventstore.com/
ES/CQRS framework for NServiceBus and EventStore
HealthChecks.EventStore is the health check package for EventStore, using the TCP Client.
The GRPC client API for managing Event Store Projections. Get the open source or commercial versions of Event Store server from https://eventstore.com/
The embedded client API for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/
The GRPC client API for Event Store Operations, e.g., Scavenging. Get the open source or commercial versions of Event Store server from https://eventstore.com/
Use Ninject as your IoC container of choice with Greg Young's Event Store for CQRS.NET
The interfaces required to create plugins for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/
The GRPC client API for managing users in Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/
Use Greg Young's event store as the Event Store in CQRS.NET
HealthChecks.EventStore.gRPC is the health check package for EventStore, using the gRPC client.
EventStore support for Aggregates.NET
Deprecated. Use the Cqrs.Ninject package instead.
SimpleInjector support for Aggregates.NET
A totally simple event store for rdbms.
StructureMap support for Aggregates.NET
Wrapper for simple integration with EventStore.
Streamstone is a lightweight library which implements a low-level mechanics of Event Store on top of Windows Azure Table Storage. Handles concurrency conflicts via optimistic locking. Supports custom event and stream metadata. Optimized for batch processing.
NewtonsoftJson support for Aggregates.NET
NServiceBus support for Aggregates.NET
Use Azure Cosmos DB (DocumentDB) as an event store, read store and data store in CQRS.NET
Domain abstracts for SimpleEventStore.
Production-grade Event Sourcing library
Set of abstractions for SimpleEventStore.
EventStore subscriber, using the JustGiving.EventStore.Http.Client library.
Extensions used to facilitate instrumentation of the EventStore Client.
# 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