OpenSleigh.Persistence.Cosmos.Mongo 1.0.1

dotnet add package OpenSleigh.Persistence.Cosmos.Mongo --version 1.0.1
NuGet\Install-Package OpenSleigh.Persistence.Cosmos.Mongo -Version 1.0.1
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="OpenSleigh.Persistence.Cosmos.Mongo" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenSleigh.Persistence.Cosmos.Mongo --version 1.0.1
#r "nuget: OpenSleigh.Persistence.Cosmos.Mongo, 1.0.1"
#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.
// Install OpenSleigh.Persistence.Cosmos.Mongo as a Cake Addin
#addin nuget:?package=OpenSleigh.Persistence.Cosmos.Mongo&version=1.0.1

// Install OpenSleigh.Persistence.Cosmos.Mongo as a Cake Tool
#tool nuget:?package=OpenSleigh.Persistence.Cosmos.Mongo&version=1.0.1

OpenSleigh.Persistence.Cosmos.Mongo

Nuget

Description

CosmosDB Persistence driver for OpenSleigh using the MongoDB API

Installation

This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Persistence.Cosmos.Mongo/

How-to

The first thing to do is build an instance of CosmosConfiguration 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 CosmosConfiguration(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).

Notes

  • as of today, Cosmos has no support for multi-document transactions across collections.

Do you like this project? Then consider giving a donation! Donate

Product 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. 
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
1.0.1 391 8/30/2022
1.0.0 253 12/30/2021
0.3.0 296 8/27/2021
0.2.1 288 4/26/2021
0.2.0 303 3/30/2021
0.1.0 289 3/27/2021
0.0.2 285 3/21/2021