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
                    
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="Bravellian.Platform.Postgres" Version="2026.2.3.1131" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bravellian.Platform.Postgres" Version="2026.2.3.1131" />
                    
Directory.Packages.props
<PackageReference Include="Bravellian.Platform.Postgres" />
                    
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 Bravellian.Platform.Postgres --version 2026.2.3.1131
                    
#r "nuget: Bravellian.Platform.Postgres, 2026.2.3.1131"
                    
#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 Bravellian.Platform.Postgres@2026.2.3.1131
                    
#: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=Bravellian.Platform.Postgres&version=2026.2.3.1131
                    
Install as a Cake Addin
#tool nuget:?package=Bravellian.Platform.Postgres&version=2026.2.3.1131
                    
Install as a Cake Tool

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

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
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
Loading failed

For support, contact oss@bravellian.com