Thank you to Roberto Paterlini for contributing this provider
Provides distributed worker support on Workflow Core using SQL Server Service Broker.
This makes it possible to have a cluster of nodes processing your workflows, along with a distributed lock manager.
Install the NuGet package "WorkflowCore.QueueProviders.SqlServer"
PM> Install-Package WorkflowCore.QueueProviders.SqlServer -Pre
Use the .UseSqlServerBroker extension method when building your service provider.
services.AddWorkflow(x => x.UseSqlServerBroker(@"Server=.;Database=WorkflowCore;Trusted_Connection=True;", true, true));