Shuttle.Recall.Sql.EventProcessing 20.0.0

Prefix Reserved
dotnet add package Shuttle.Recall.Sql.EventProcessing --version 20.0.0
                    
NuGet\Install-Package Shuttle.Recall.Sql.EventProcessing -Version 20.0.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="Shuttle.Recall.Sql.EventProcessing" Version="20.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Shuttle.Recall.Sql.EventProcessing" Version="20.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Shuttle.Recall.Sql.EventProcessing" />
                    
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 Shuttle.Recall.Sql.EventProcessing --version 20.0.0
                    
#r "nuget: Shuttle.Recall.Sql.EventProcessing, 20.0.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 Shuttle.Recall.Sql.EventProcessing@20.0.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=Shuttle.Recall.Sql.EventProcessing&version=20.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Shuttle.Recall.Sql.EventProcessing&version=20.0.0
                    
Install as a Cake Tool

Sql Server

PM> Install-Package Shuttle.Recall.Sql.EventProcessing

A Sql Server implementation of the Shuttle.Recall event sourcing mechanism.

Configuration

services.AddSqlEventProcessing(builder => 
{
	builder.Options.EventProjectionConnectionStringName = "event-projection-connection-string-name";
	builder.Options.EventStoreConnectionStringName = "event-store-connection-string-name";
});

services.AddEventStore(builder =>
{
    builder.AddEventHandler<ProjectionNameHandler>("ProjectionName");
});

The default JSON settings structure is as follows:

{
  "Shuttle": {
    "EventProcessing": {
      "EventProjectionConnectionStringName": "event-projection-connection-string-name",
      "EventStoreConnectionStringName": "event-store-connection-string-name"
    }
  }
}

Database

In order to create the relevant database structures execute the relevant ProjectionCreate.sql script:

%userprofile%\.nuget\packages\shuttle.recall.sql.eventprocessing\{version}\scripts\{provider}\ProjectionCreate.sql

Supported providers

  • Microsoft.Data.SqlClient
  • System.Data.SqlClient

If you'd like support for another SQL-based provider please feel free to give it a bash and send a pull request if you do go this route. You are welcome to create an issue and assistance will be provided where possible.

Product 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.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
20.0.0 470 2/2/2025 20.0.0 is deprecated because it is no longer maintained.
18.0.0 288 8/5/2024 18.0.0 is deprecated because it is no longer maintained.
17.0.1 255 5/3/2024 17.0.1 is deprecated because it is no longer maintained.
17.0.0 269 4/30/2024 17.0.0 is deprecated because it is no longer maintained.
16.1.1 551 12/1/2022 16.1.1 is deprecated because it is no longer maintained.
16.0.1 584 9/18/2022 16.0.1 is deprecated because it is no longer maintained.
16.0.0 577 9/4/2022 16.0.0 is deprecated because it is no longer maintained.
14.0.0 635 5/29/2022 14.0.0 is deprecated because it is no longer maintained.
13.1.0 595 5/6/2022 13.1.0 is deprecated because it is no longer maintained.
13.0.2 645 4/9/2022 13.0.2 is deprecated because it is no longer maintained.
13.0.1 626 4/9/2022 13.0.1 is deprecated because it is no longer maintained.
13.0.0 647 3/21/2022 13.0.0 is deprecated because it is no longer maintained.
12.0.2 692 2/4/2021 12.0.2 is deprecated because it is no longer maintained.
12.0.1 703 11/8/2020 12.0.1 is deprecated because it is no longer maintained.
11.0.0 898 8/21/2019 11.0.0 is deprecated because it is no longer maintained.
10.2.0 831 5/27/2019 10.2.0 is deprecated because it is no longer maintained.
10.1.4 1,092 9/22/2018 10.1.4 is deprecated because it is no longer maintained.
10.1.3 1,104 9/16/2018 10.1.3 is deprecated because it is no longer maintained.
10.0.3 1,248 8/7/2018 10.0.3 is deprecated because it is no longer maintained.
Loading failed