Hi Arulpriya,
the requirment or the reason i want to build it this way, is the complexity of the collection it self. The collection looks like this
- person
- personProp1Collection
- personProp1PropCollection
- personProp1PropPropCollection
- personProp2Collection
It represents the hole Database and is generated on application start. So i hope to reduce the loading time during runtime. But to show or to edit some child,child,child Collections i need to show them in a SfDataGrid.
I tried it this way <syncfusion:GridTextColumn MappingName="PersonProp1.PersonProp1ID" HeaderText="PersonProp1ID"/>
But with that it only work if i use
Datagrid.ItemSource = person[index]
But i want to show
<syncfusion:GridTextColumn MappingName="PersonProp1.PersonProp1ID" HeaderText="PersonProp1ID"/>
that for all Persons without loading it in a list.
The reason behind that construct is the that i dont want to update the hole collection of collection during the runtime. Just safe it to the Database and working in the lokal storage.
I hope that explains it better, if not, maybe i need to search someone that can translate my problem xD
Greetings,
Patrick