OpenSleigh.Persistence.Cosmos.SQL
1.0.1
dotnet add package OpenSleigh.Persistence.Cosmos.SQL --version 1.0.1
NuGet\Install-Package OpenSleigh.Persistence.Cosmos.SQL -Version 1.0.1
<PackageReference Include="OpenSleigh.Persistence.Cosmos.SQL" Version="1.0.1" />
paket add OpenSleigh.Persistence.Cosmos.SQL --version 1.0.1
#r "nuget: OpenSleigh.Persistence.Cosmos.SQL, 1.0.1"
// Install OpenSleigh.Persistence.Cosmos.SQL as a Cake Addin #addin nuget:?package=OpenSleigh.Persistence.Cosmos.SQL&version=1.0.1 // Install OpenSleigh.Persistence.Cosmos.SQL as a Cake Tool #tool nuget:?package=OpenSleigh.Persistence.Cosmos.SQL&version=1.0.1
OpenSleigh.Persistence.Cosmos.SQL
Description
CosmosDB persistence library for OpenSleigh using the SQL API
Installation
This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Persistence.Cosmos.SQL/
How-to
The first thing to do is build an instance of CosmosSqlConfiguration
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 UseCosmosPersistence
extension method:
services.AddOpenSleigh(cfg =>{
var connectionString = Configuration.GetConnectionString("cosmos");
var dbName = Configuration["cosmosDbName"];
var cosmosCfg = new CosmosSqlConfiguration(connectionString, dbName);
cfg.UseCosmosPersistence(cosmosCfg);
// 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.Cosmos (>= 6.0.8)
- OpenSleigh.Abstractions (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.