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
<PackageReference Include="OpenSleigh.Persistence.Cosmos.Mongo" Version="1.0.1" />
paket add OpenSleigh.Persistence.Cosmos.Mongo --version 1.0.1
#r "nuget: OpenSleigh.Persistence.Cosmos.Mongo, 1.0.1"
// 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
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.
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
- Mongodb.Driver (>= 2.17.1)
- 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.