Bravellian.Platform.Postgres
2026.2.3.1131
dotnet add package Bravellian.Platform.Postgres --version 2026.2.3.1131
NuGet\Install-Package Bravellian.Platform.Postgres -Version 2026.2.3.1131
<PackageReference Include="Bravellian.Platform.Postgres" Version="2026.2.3.1131" />
<PackageVersion Include="Bravellian.Platform.Postgres" Version="2026.2.3.1131" />
<PackageReference Include="Bravellian.Platform.Postgres" />
paket add Bravellian.Platform.Postgres --version 2026.2.3.1131
#r "nuget: Bravellian.Platform.Postgres, 2026.2.3.1131"
#:package Bravellian.Platform.Postgres@2026.2.3.1131
#addin nuget:?package=Bravellian.Platform.Postgres&version=2026.2.3.1131
#tool nuget:?package=Bravellian.Platform.Postgres&version=2026.2.3.1131
Bravellian.Platform.Postgres
PostgreSQL provider for Bravellian.Platform: outbox, inbox, scheduler, fanout, metrics, leases, and semaphores.
Install
dotnet add package Bravellian.Platform.Postgres
Usage
Single-call platform registration
Register the full PostgreSQL-backed platform stack (outbox/inbox/scheduler/fanout/idempotency, audit, operations, email outbox + delivery, metrics exporter, leases, semaphores) with one call:
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddPostgresPlatform(
"Host=localhost;Database=MyApp;Username=app;Password=secret;",
options =>
{
options.EnableSchemaDeployment = true;
options.EnableSchedulerWorkers = true;
});
var app = builder.Build();
Use the ConfigureOutbox, ConfigureInbox, and ConfigureScheduler delegates on
PostgresPlatformOptions for per-component tuning while keeping a single public entry point.
Examples
One-time execution registry
Use xref:Bravellian.Platform.OnceExecutionRegistry to guard idempotent startup tasks or DI registrations.
var registry = new OnceExecutionRegistry();
if (!registry.CheckAndMark("platform:di"))
{
builder.Services.AddPostgresPlatform("Host=localhost;Database=MyApp;Username=app;Password=secret;");
}
if (registry.HasRun("platform:di"))
{
logger.LogInformation("Platform services already registered.");
}
Discovery-based registration
builder.Services.AddSingleton<IPlatformDatabaseDiscovery>(new MyTenantDiscovery());
builder.Services.AddPostgresPlatformMultiDatabaseWithDiscovery(enableSchemaDeployment: true);
Documentation
- https://github.com/bravellian/platform
- docs/INDEX.md
- docs/outbox-quickstart.md
- docs/inbox-quickstart.md
| 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
- Bravellian.Platform (>= 2026.2.3.1131)
- Bravellian.Platform.Audit (>= 2026.2.3.1131)
- Bravellian.Platform.Correlation (>= 2026.2.3.1131)
- Bravellian.Platform.Email (>= 2026.2.3.1131)
- Bravellian.Platform.Idempotency (>= 2026.2.3.1131)
- Bravellian.Platform.Operations (>= 2026.2.3.1131)
- Cronos (>= 0.11.1)
- Dapper (>= 2.1.66)
- dbup-postgresql (>= 6.1.5)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Options (>= 10.0.2)
- Npgsql (>= 10.0.1)
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 |
|---|---|---|
| 2026.2.3.1131 | 102 | 2/3/2026 |
| 2026.2.3.387 | 92 | 2/3/2026 |
| 2026.2.3.215 | 84 | 2/3/2026 |
| 2026.2.3.196 | 97 | 2/3/2026 |
| 2026.2.2.1402 | 94 | 2/2/2026 |
| 2026.2.2.1040 | 86 | 2/2/2026 |
| 2026.2.1.1354 | 87 | 2/1/2026 |
| 2026.2.1.1297 | 92 | 2/1/2026 |
| 2026.2.1.1217 | 86 | 2/1/2026 |
| 2026.2.1.333 | 86 | 2/1/2026 |
| 2026.2.1.326 | 89 | 2/1/2026 |
| 2026.2.1.159 | 85 | 2/1/2026 |
| 2026.1.31.455 | 92 | 1/31/2026 |
| 2026.1.30.391 | 89 | 1/30/2026 |
| 2026.1.29.1054 | 89 | 1/29/2026 |
| 2026.1.28.1297 | 93 | 1/28/2026 |
| 2026.1.28.293 | 92 | 1/28/2026 |
| 2026.1.27.1127 | 90 | 1/27/2026 |
| 2026.1.27.106 | 88 | 1/27/2026 |
| 2026.1.26.1292 | 88 | 1/26/2026 |
For support, contact oss@bravellian.com