Excalibur.Inbox.SqlServer 10.0.0-alpha.5

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

Excalibur.Inbox.SqlServer

SQL Server implementation of the inbox pattern for Excalibur.

Part Of

This package is included in the following metapackages:

Metapackage Tier What It Adds
Excalibur.SqlServer Complete Everything for SQL Server: ES + Outbox + Inbox + Saga + LE + Audit + Compliance + Data

Tip: Install Excalibur.SqlServer for a production-ready SQL Server stack with a single package reference.

Schema

The store never creates its table at runtime. Provision it before the first message is processed using the canonical DDL shipped in the package under scripts/001_CreateInboxSchema.sql. Defaults: schema dbo, table inbox_messages (both configurable via SqlServerInboxOptions).

Tenant-isolation key

Deduplication keys on (MessageId, HandlerType) and, when a tenant is ambient, additionally on TenantId. The primary/unique key in the database must match your deployment mode:

Deployment Store MERGE match key Required unique key
Single-tenant (no ambient tenant) (MessageId, HandlerType) (MessageId, HandlerType)
Multi-tenant (ambient ITenantContext) (MessageId, HandlerType, TenantId) (MessageId, HandlerType, TenantId), TenantId NOT NULL

In multi-tenant mode TenantId must be NOT NULL so two tenants sharing (MessageId, HandlerType) do not collide on the pair key. The shipped DDL ships the single-tenant pair key by default with the multi-tenant triple key as a documented alternative.

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 (2)

Showing the top 2 NuGet packages that depend on Excalibur.Inbox.SqlServer:

Package Downloads
Excalibur.Outbox.SqlServer

SQL Server implementation of the transactional outbox pattern for Excalibur, providing reliable message delivery with at-least-once semantics using SQL Server as the backing store.

Excalibur.SqlServer

Complete SQL Server metapackage for Excalibur: event sourcing, outbox, inbox, sagas, leader election, audit logging, compliance, and data access in a single package reference.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-alpha.5 43 8/10/2026
10.0.0-alpha.4 41 8/10/2026
3.0.0-alpha.216 83 6/30/2026
3.0.0-alpha.215 85 6/23/2026
3.0.0-alpha.214 92 6/23/2026
3.0.0-alpha.208 77 6/11/2026
3.0.0-alpha.207 78 6/11/2026
3.0.0-alpha.205 80 6/10/2026
3.0.0-alpha.204 81 6/8/2026
3.0.0-alpha.203 76 6/8/2026
3.0.0-alpha.202 85 6/8/2026
3.0.0-alpha.201 77 6/8/2026
3.0.0-alpha.199 88 6/8/2026
3.0.0-alpha.198 77 5/28/2026
3.0.0-alpha.197 86 5/28/2026
3.0.0-alpha.194 80 5/20/2026
3.0.0-alpha.193 82 5/13/2026
3.0.0-alpha.192 76 5/13/2026
3.0.0-alpha.191 68 5/13/2026
3.0.0-alpha.189 91 5/12/2026
Loading failed

See CHANGELOG.md for release notes