What version of .NET does your existing project use?
.NET Framework 4.8
What version of .NET are you attempting to target?
.NET 8
Description
With the Inprocess flow, we could do
var status = await client.GetStatusAsync(instanceId, true, true)
And in turn have access to the orchestration history of instanceId through
status.History
With the out-of-process API, the API is now
var status = await client.GetInstanceAsync(instanceId, true)
Which returns OrchestrationMetadata object, but doesn't contain History property.
How can one have access to orchestration history with an out-of-process model of running Azure functions?
Project configuration and dependencies
No response
Link to a repository that reproduces the issue
No response
What version of .NET does your existing project use?
.NET Framework 4.8
What version of .NET are you attempting to target?
.NET 8
Description
With the Inprocess flow, we could do
var status = await client.GetStatusAsync(instanceId, true, true)And in turn have access to the orchestration history of instanceId through
status.HistoryWith the out-of-process API, the API is now
var status = await client.GetInstanceAsync(instanceId, true)Which returns OrchestrationMetadata object, but doesn't contain History property.
How can one have access to orchestration history with an out-of-process model of running Azure functions?
Project configuration and dependencies
No response
Link to a repository that reproduces the issue
No response