Provides support to persist workflows running on Workflow Core to a PostgreSQL database.
Install the NuGet package "WorkflowCore.Persistence.PostgreSQL"
PM> Install-Package WorkflowCore.Persistence.PostgreSQL -Pre
Use the .UsePostgreSQL extension method when building your service provider.
services.AddWorkflow(x => x.UsePostgreSQL(@"Server=127.0.0.1;Port=5432;Database=workflow;User Id=postgres;Password=password;", true, true));