Activity workers Does not take input parameter from previous step #1165
Unanswered
tamereldamanhouri
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to build a workflow with Activity workers as my workflow has many dependencies but when I just passed the parameter between step and Activity I don't receive the expected value I just received the passed parameter from SubmitActivitySuccess as below
builder
.StartWith()
.Activity("activity-authUser1")
.Output(data => data.userId, step => step.Result)
.Then()
.Input(step => step.input, data=> data.userId)
.Then(context => Debug.WriteLine("workflow complete"));
any Idea please for this issue
thanks
Beta Was this translation helpful? Give feedback.
All reactions