Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created April 25, 2026 12:25
Show Gist options
  • Select an option

  • Save wullemsb/fab77ed0d5adf26aa7686ee8f7cf32b0 to your computer and use it in GitHub Desktop.

Select an option

Save wullemsb/fab77ed0d5adf26aa7686ee8f7cf32b0 to your computer and use it in GitHub Desktop.
// Fresh instance per resolution
services.AddKeyedTransient<MyWorkflow>("my-workflow");
// New object every call
var wf = sp.GetRequiredKeyedService<MyWorkflow>("my-workflow");
await env.RunAsync(wf, input, sessionId);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment