How can I parse a JSON into a dynamic object allowing access to fields via dot notation using System.Text.Json?
I'm implementing a feature where a user can write an arbitrary expression that needs to be evaluated against some context. Users should be able to write expressions referring to a dynamic JSON payload. I'm using Roslyn CSharpScript to execute the…