Excalibur.Data.SqlServer
3.0.0-alpha.179
dotnet add package Excalibur.Data.SqlServer --version 3.0.0-alpha.179
NuGet\Install-Package Excalibur.Data.SqlServer -Version 3.0.0-alpha.179
<PackageReference Include="Excalibur.Data.SqlServer" Version="3.0.0-alpha.179" />
<PackageVersion Include="Excalibur.Data.SqlServer" Version="3.0.0-alpha.179" />
<PackageReference Include="Excalibur.Data.SqlServer" />
paket add Excalibur.Data.SqlServer --version 3.0.0-alpha.179
#r "nuget: Excalibur.Data.SqlServer, 3.0.0-alpha.179"
#:package Excalibur.Data.SqlServer@3.0.0-alpha.179
#addin nuget:?package=Excalibur.Data.SqlServer&version=3.0.0-alpha.179&prerelease
#tool nuget:?package=Excalibur.Data.SqlServer&version=3.0.0-alpha.179&prerelease
Excalibur.Data.SqlServer — A3 Abstractions Usage (Examples)
Examples only — adjust to your host’s composition.
Register services
using Excalibur.Data.SqlServer;
using Excalibur.A3.Abstractions.Authorization;
using Excalibur.A3.Abstractions.Authorization;
services.AddExcaliburSqlServices();
// IGrantRequestProvider and IActivityGroupGrantService are registered via ServiceCollectionExtensions
Consume abstractions
public sealed class GrantsController(IGrantRequestProvider grants)
{
public async Task<IReadOnlyList<Grant>> GetUserGrants(string userId, CancellationToken ct)
=> await grants.GetAllGrantsAsync(userId, ct);
}
Notes
- Providers depend on
Excalibur.A3.Abstractionsonly. No references toExcalibur.A3implementation remain. - Adapters internally execute existing IDataRequest request objects through the configured pipeline.
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.SqlServerfor a production-ready SQL Server stack with a single package reference.
| Product | Versions 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. |
-
net10.0
- AspNetCore.HealthChecks.SqlServer (>= 9.0.0)
- Ben.Demystifier (>= 0.4.1)
- BenchmarkDotNet (>= 0.15.8)
- CloudNative.CloudEvents (>= 2.8.0)
- CloudNative.CloudEvents.SystemTextJson (>= 2.8.0)
- Cronos (>= 0.12.0)
- Dapper (>= 2.1.72)
- Excalibur.A3.Abstractions (>= 3.0.0-alpha.179)
- Excalibur.Cdc (>= 3.0.0-alpha.179)
- Excalibur.Data (>= 3.0.0-alpha.179)
- Excalibur.Data.Abstractions (>= 3.0.0-alpha.179)
- Excalibur.Dispatch (>= 3.0.0-alpha.179)
- Excalibur.Dispatch.Abstractions (>= 3.0.0-alpha.179)
- FluentValidation (>= 12.1.1)
- FluentValidation.DependencyInjectionExtensions (>= 12.1.1)
- IdentityModel (>= 7.0.0)
- JsonNet.ContractResolvers (>= 2.0.0)
- Medo.Uuid7 (>= 3.2.0)
- MemoryPack (>= 1.21.4)
- Microsoft.ApplicationInsights (>= 3.1.0)
- Microsoft.AspNetCore.Authorization (>= 10.0.7)
- Microsoft.CodeAnalysis.Analyzers (>= 3.11.0)
- Microsoft.CodeAnalysis.Common (>= 4.14.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.14.0)
- Microsoft.Data.SqlClient (>= 7.0.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Caching.Memory (>= 10.0.7)
- Microsoft.Extensions.Configuration (>= 10.0.7)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.7)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.7)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.7)
- Microsoft.Extensions.Configuration.Json (>= 10.0.7)
- Microsoft.Extensions.DependencyInjection (>= 10.0.7)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.7)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Hosting (>= 10.0.7)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Http (>= 10.0.7)
- Microsoft.Extensions.Logging (>= 10.0.7)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.7)
- Microsoft.Extensions.Logging.Console (>= 10.0.7)
- Microsoft.Extensions.ObjectPool (>= 10.0.7)
- Microsoft.Extensions.Options (>= 10.0.7)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.7)
- Microsoft.Extensions.Options.DataAnnotations (>= 10.0.7)
- Microsoft.IdentityModel.Tokens (>= 8.17.0)
- OpenTelemetry (>= 1.15.3)
- OpenTelemetry.Api (>= 1.15.3)
- OpenTelemetry.Extensions.Hosting (>= 1.15.3)
- Polly (>= 8.6.6)
- System.IdentityModel.Tokens.Jwt (>= 8.17.0)
- System.Threading.RateLimiting (>= 10.0.7)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Excalibur.Data.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.Inbox.SqlServer
SQL Server implementation of the inbox pattern for Excalibur, providing idempotent message processing. |
|
|
Excalibur.Cdc.SqlServer
SQL Server Change Data Capture (CDC) implementation for Excalibur, using SQL Server CDC tables for real-time row-level change detection. |
|
|
Excalibur.Jobs.Cdc
CDC (Change Data Capture) job types for the Excalibur Jobs framework. |
|
|
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 |
|---|---|---|
| 3.0.0-alpha.179 | 0 | 5/6/2026 |
| 3.0.0-alpha.178 | 59 | 4/25/2026 |
| 3.0.0-alpha.177 | 55 | 4/25/2026 |
| 3.0.0-alpha.176 | 58 | 4/25/2026 |
| 3.0.0-alpha.175 | 60 | 4/24/2026 |
| 3.0.0-alpha.174 | 66 | 4/24/2026 |
| 3.0.0-alpha.173 | 49 | 4/24/2026 |
| 3.0.0-alpha.170 | 59 | 4/23/2026 |
| 3.0.0-alpha.168 | 63 | 4/23/2026 |
| 3.0.0-alpha.165 | 54 | 4/22/2026 |
| 3.0.0-alpha.164 | 46 | 4/22/2026 |
| 3.0.0-alpha.163 | 61 | 4/22/2026 |
| 3.0.0-alpha.162 | 56 | 4/22/2026 |
| 3.0.0-alpha.161 | 53 | 4/21/2026 |
| 3.0.0-alpha.160 | 55 | 4/21/2026 |
| 3.0.0-alpha.159 | 55 | 4/21/2026 |
| 3.0.0-alpha.158 | 57 | 4/21/2026 |
| 3.0.0-alpha.157 | 57 | 4/20/2026 |
| 3.0.0-alpha.156 | 63 | 4/17/2026 |
| 3.0.0-alpha.155 | 56 | 4/17/2026 |