How could I access childbusinessobject from parentbusinessobject? I checked SF source code and found that is a private variable _ChildBusinessObjects. However it is not exposed. Any other way to access it?
Thank you
For Each child As BusinessLayer In Me.ChildBusinessObjects '-- Test the type of the child If child.GetType() Is GetType(MyChildType) Then '-- Process the child End IfNext