Hi,
I'm trying (and not succeeding) to build an index based on a collection property combined with a property, like:
Index Test On (Property, ListProperty(ELEMENTS).Property2)
For example, I have a class with this properties:
Property Simple As %String;
Property ListOfProp As List Of AnotherObject;
The, I try to create a simple index of one of the AnotherObject properties and I can compile and it creates the right index:
Index Test On (ListOfProp(ELEMENTS).Name);
But when I add a "normal" property, compiler miserably fails:
Index Test On (Simple, ListOfProp(ELEMENTS).