Hello Aspose Team,
Could you please help me with one question: How can I access first element in json array in Linq template with Json Data source?
E.g. I have an json object:
{
“name”: “Peter”,
“surname”: “Pan”,
“activities”: [
“walk”,
“run”
],
}
and I would like to print “walk” in linq template. I tried with <<[activities[0]]>> as normal array access, but it does not work.
Thank you.