C# Azure Function passing object OrchestrationTrigger no longer working after update #2418
Unanswered
aardrasystems
asked this question in
Q&A
Replies: 1 comment
-
@aardrasystems: At a glance, I would suspect you're calling onto a different overload of the I suspect that now that you're using the new version, you'll need to call it like this: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My Azure Function app was originally using Version 3, and everything was working well. Recently, I updated to Azure Function App V4, and I have encountered some issues with my durable function execution. I am not sure if this is related to the Azure Function App upgrade or some changes in the durable nugget package version. Originally, when using Function 3, I was using version 1.8.3, but now I am using the most recent version.
The issue is that when I start the durable function, I am no longer able to pass an object when triggering the OrchestrationTrigger, as I did previously.
Please see my code example below:
It seems that with StartNewAsync, I am no longer able to pass an object but just a simple string.
Can anyone advise me on how I can change this so that my object can be passed into the durable function?
I am then reading the object in the code below, but it's coming as NULL.
Beta Was this translation helpful? Give feedback.
All reactions