my object contains a collection of collections. I like to get all child objects of objects and store them in an array of strings.
MainObject contains a list of parent
Parent contains a list of children
Child Properties: (Id, Name)
How can I query MainObject and find all child identifiers and store it in an array of strings using linq?
source
share