weismantelf
weismantelf
Hello, I have a question to the SAGA workflow. I am using the following sample: public void Build(IWorkflowBuilder builder) { builder .StartWith(context => Console.WriteLine("Begin")) .Saga(saga => saga .StartWith() .CompensateWith() .Then()...
Hello, I am using the following workflow: public void Build(IWorkflowBuilder builder) { builder .StartWith(context => Console.WriteLine($"START {nameof(ConnectWorkflow)} WITH CONTEXT {context.Workflow.Id}")) .WaitFor("MyEvent", ev => "CONNECT", data => DateTime.Now) .Saga(sage => sage...
CRS
Hello, is there any way to set the CRC for a map ?