Excalibur.Workflows.SqlServer 10.0.0-alpha.8

This is a prerelease version of Excalibur.Workflows.SqlServer.
dotnet add package Excalibur.Workflows.SqlServer --version 10.0.0-alpha.8
                    
NuGet\Install-Package Excalibur.Workflows.SqlServer -Version 10.0.0-alpha.8
                    
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="Excalibur.Workflows.SqlServer" Version="10.0.0-alpha.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Excalibur.Workflows.SqlServer" Version="10.0.0-alpha.8" />
                    
Directory.Packages.props
<PackageReference Include="Excalibur.Workflows.SqlServer" />
                    
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 Excalibur.Workflows.SqlServer --version 10.0.0-alpha.8
                    
#r "nuget: Excalibur.Workflows.SqlServer, 10.0.0-alpha.8"
                    
#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 Excalibur.Workflows.SqlServer@10.0.0-alpha.8
                    
#: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=Excalibur.Workflows.SqlServer&version=10.0.0-alpha.8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Excalibur.Workflows.SqlServer&version=10.0.0-alpha.8&prerelease
                    
Install as a Cake Tool

Excalibur.Workflows.SqlServer

SQL Server implementation of the durable workflow signal inbox for Excalibur.

Part Of

The Excalibur durable-execution engine (Excalibur.Workflows).

What It Provides

A restart-durable IWorkflowSignalInbox. Admitted signals and their deduplication keys are persisted to SQL Server, so a signal admitted but not yet drained survives a process restart, and a producer's redelivery of the same (instanceId, signalId) after a restart is still deduplicated — the guarantee the in-process default cannot make.

Usage

services.AddWorkflows();

// Wire the durable SQL Server signal inbox (overrides the in-process default) and, in the same call,
// register the durability capability marker.
services.AddSqlServerWorkflowSignalInbox(options =>
{
    options.ConnectionString = configuration.GetConnectionString("Workflows")!;
    options.SchemaName = "dbo";
    options.TableName = "workflow_signal_inbox";
});

// Optional: fail host start if a durable signal inbox is NOT wired (a deployment that requires
// restart-durable signals opts in to this guard).
services.RequireDurableSignalInbox();

Schema

The store never creates its table at runtime. Run the shipped, idempotent DDL script against the target database before the first signal is admitted:

Scripts/001_CreateWorkflowSignalInboxSchema.sql

It creates the table below (shown here for reference; the script is the source of truth and is safe to re-run):

CREATE TABLE [dbo].[workflow_signal_inbox] (
    Sequence    BIGINT IDENTITY(1,1) NOT NULL PRIMARY KEY,
    InstanceId  NVARCHAR(200)        NOT NULL,
    SignalId    NVARCHAR(200)        NOT NULL,
    SignalName  NVARCHAR(200)        NOT NULL,
    PayloadJson NVARCHAR(MAX)        NULL,
    CONSTRAINT UQ_workflow_signal_inbox UNIQUE (InstanceId, SignalId)
);

The UNIQUE (InstanceId, SignalId) constraint is required for correctness, not just hygiene: it is what makes a producer's redelivery of an already-admitted signal a no-op. Omit it and every redelivery is admitted a second time, silently breaking exactly-once signal delivery. Sequence is an IDENTITY arrival column: drain order is the monotonic append sequence, never a wall-clock timestamp, so consumption is deterministic and reproducible.

Product Compatible and additional computed target framework versions.
.NET 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. 
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
10.0.0-alpha.8 38 8/14/2026
10.0.0-alpha.7 41 8/13/2026
10.0.0-alpha.6 56 8/11/2026
10.0.0-alpha.5 42 8/10/2026

See CHANGELOG.md for release notes