I'm getting from client json string:
{ "Client": { "Name": "John" } }
And in document I have the following tag:
<<[client.name]>>
and try to inject it:
var obj = JsonConvert.DeserializeObject(input.DataJson);
var engine = new ReportingEngine();
engine.BuildReport(document, obj);
But it doesn't work. Can I inject that json with case insensetive checking of properties? Or I have to modify json to do its properties as lowercase? How can I do that?