OpenSleigh.Persistence.PostgreSQL
1.0.1
See the version list below for details.
dotnet add package OpenSleigh.Persistence.PostgreSQL --version 1.0.1
NuGet\Install-Package OpenSleigh.Persistence.PostgreSQL -Version 1.0.1
<PackageReference Include="OpenSleigh.Persistence.PostgreSQL" Version="1.0.1" />
paket add OpenSleigh.Persistence.PostgreSQL --version 1.0.1
#r "nuget: OpenSleigh.Persistence.PostgreSQL, 1.0.1"
// Install OpenSleigh.Persistence.PostgreSQL as a Cake Addin #addin nuget:?package=OpenSleigh.Persistence.PostgreSQL&version=1.0.1 // Install OpenSleigh.Persistence.PostgreSQL as a Cake Tool #tool nuget:?package=OpenSleigh.Persistence.PostgreSQL&version=1.0.1
OpenSleigh.Persistence.PostgreSQL
Description
PostgreSQL Persistence library for OpenSleigh
Installation
This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Persistence.PostgreSQL/
How-to
The first thing to do is build an instance of SqlConfiguration
with the connection details. This can be done by reading the current app configuration. Once done, all you have to do is to call the SqlBusConfiguratorExtensions
extension method:
services.AddOpenSleigh(cfg =>{
var connectionString = Configuration.GetConnectionString("sql");
var sqlCfg = new SqlConfiguration(connectionString);
cfg.SqlBusConfiguratorExtensions(sqlCfg);
// register the Sagas here
});
Of course it can be used in conjunction with any other Transport library as well (eg. InMemory or Azure Service Bus).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.EntityFrameworkCore (>= 6.0.8)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 6.0.6)
- OpenSleigh.Persistence.SQL (>= 2.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.