Hello!
Im using RDLC Bold Report Designer, and i need to set as data source complex JSON.
And i need to access to the value of the properties in nested objects (some times 3 or 4 levels deeper)
But i will simplificate this here. Suppose we have this interface as data souce
[
{
thisIsAString: string,
thisIsAnObject: {
insideObject:string
}
}
]
And I set it Like this.
My first Question is how i can define de propierties in thisIsAnObject.
The second, and even more important, is how i can access this value to set it ina text field:
Thank you very much.