AsyncHandler.EventSourcing
1.0.3
See the version list below for details.
dotnet add package AsyncHandler.EventSourcing --version 1.0.3
NuGet\Install-Package AsyncHandler.EventSourcing -Version 1.0.3
<PackageReference Include="AsyncHandler.EventSourcing" Version="1.0.3" />
paket add AsyncHandler.EventSourcing --version 1.0.3
#r "nuget: AsyncHandler.EventSourcing, 1.0.3"
// Install AsyncHandler.EventSourcing as a Cake Addin #addin nuget:?package=AsyncHandler.EventSourcing&version=1.0.3 // Install AsyncHandler.EventSourcing as a Cake Tool #tool nuget:?package=AsyncHandler.EventSourcing&version=1.0.3
asynchandler
A lightweight event sourcing framework with event-store of choice.
Overview
asynchandler is a high-performance event sourcing framework. combining consistency with schema flexibility, asynchandler aims to simplify event sourcing for everyone. Currently supports Azure Sql database and Sql Server, with Postgres in the upcoming releases.
Prerequisites
asynchandler runs on the stable release of .Net 8 and requires the SDK installed.
https://dotnet.microsoft.com/en-us/download/dotnet/8.0
Use docker to run sqlserver or postgres databases, execute docker-compose
.
docker compose --project-name some-name up -d
Usage
Install the package
Simply install AsyncHandler.EventSourcing
package.
dotnet add package AsyncHandler.EventSourcing
Use AddAsyncHandler
service collection extension
builder.Services.AddAsyncHandler(asynchandler =>
{
asynchandler.AddEventSourcing(source =>
{
source.SelectEventSource(EventSources.AzureSql, connectionString);
});
});
Select your event source of choice from SelectEventSource
, currently AzureSql and SqlServer are supported.
To continue please visit our GitHub space.
Give us a star ⭐
If you are an event sourcer and love OSS, give us a star. 💜
License
This project is licensed under the terms of the MIT license.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- AsyncHandler.Assembly (>= 1.1.0)
- Microsoft.Data.SqlClient (>= 5.2.1)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AsyncHandler.EventSourcing:
Package | Downloads |
---|---|
AsyncHandler.Workflows
Github workflows and packages |
GitHub repositories
This package is not used by any popular GitHub repositories.