Skip to the content.

Azure providers for Workflow Core

This makes it possible to have a cluster of nodes processing your workflows.

Installing

Install the NuGet package “WorkflowCore.Providers.Azure”

Using Nuget package console

PM> Install-Package WorkflowCore.Providers.Azure

Using .NET CLI

dotnet add package WorkflowCore.Providers.Azure

Usage

Use the IServiceCollection extension methods when building your service provider

services.AddWorkflow(options => 
{
	options.UseAzureSynchronization("azure storage connection string");
	options.UseAzureServiceBusEventHub("service bus connection string", "topic name", "subscription name");
	options.UseCosmosDbPersistence("connection string");
});