here's what I want to achieve. I have a collection (A..n) with a member of type collection (myLIST). In collection B, I have an "Alias" field which we can represent as primary key.
example
A collection myLIST[0].Alias = 001
A collection myLIST[1].Alias = 002
A collection myLIST[2].Alias = 003
A collection myLIST[3].Alias = 001
In another collection B. my member type collection (myLIST) has the following data
B collection myLIST[0].Alias = 010
B collection myLIST[1].Alias = 001
B collection myLIST[2].Alias = 005
I want that my myLIST has a reference (as class reference) to other collections (A..n) myLIST with the same Alias key. if i change any public property value of A collection myLIST[0].Alias = 001
the changes will propagate to other's myLIST collectin with the same Alias of "001" (as reference). with my sample above, the changes to the public property will propagate to
A collection myLIST[3].Alias = 001
B collection myLIST[1].Alias = 001
can any one help me with this?
Thanks