Hi all,
The title pretty much says what I am trying to do.
I have an object graph and what I want to do is walk the graph but only follow properties that have a certain cascade setting.
For example if I have the following object Graph
where ->-> represents a cascading relationship
and -> is a non cascading relationship
Code:
A->->B->C
->D
I want to in my method pass in A and be able to figure out that B is cascaded to so that i can recursivley call my method on B.
But, I'm having a real hard time trying to figure out if the property is cascading or not. How do I do this?