Restore Isolated Durable Function Tuple Support

1 · Cameron Cowen · Feb. 5, 2024, 12:44 a.m.
Summary
With the release of Azure Functions on .NET 8 and feature parity of the in-process to the isolated model, I’ve started to migrate existing in-process functions to the isolated model. The existing function apps are a mixture of standard functions and durable functions. What are Tuples? Tuples are a mathematical concept of an ordered list of elements. In programming, Tuples are a feature which allows for multiple values/objects to be passed around as a single object. var tuple = ("Hello", "World")...