I have a durable function with orchestrators and activities. That works fine with basic types or classes. But now I have a Dictionary<string, object>
. The activities can’t be bind and the orchestrations can’t be found. How can I achieve that?
Use case:
There is a JSON input and one part of that changes by process type. So one field contains a dynamic structure. So I have all around in a class model and this one field as Dictionary<string, object>
because there can also be sub structures.