Forum Discussion
Expecting something like
find [parent prop name1 ][parent prop val 1 ], [parent prop name2 ][parent prop val 1], [final object prop nam][final object prop val]
Not sure what you are expecting. If you want to access objects in the child levels, you can use depth. If you have unique properties, then you can do by passing DEPTH.
someParent.Find(PropName1, PropVal1, Depth)
For Ex: Your object is in 3rd sub level from your parent; (You can see the hierarchy using Object Explorer)
-- 3rdParent
--- 2ndParent (1st sub level)
--- 1stParent (2nd sub level)
--- yourObject (3rd sub level)
3rdParent.Find(PropName1, PropVal1, 3)
Based on the DEPTH you are passing, FIND will search up to that level using the passed properties/values.