Hi Isomorphic,
what is the suggested approach if I have a field that links to many fields via foreignKey?
I'd link to establish a link between the DataSources in order to includeFrom this DS into many other DS.
I can't have
in my .ds.xml, because this is invalid XML.
does not work either (...cannot be cast to java.lang.String). Is this supposed to work?
What is the suggested approach here? The last (dirty) solution I could think of are two (or more) different fields all pointing to the same db-field with nativeName and each with one foreignKey-attribute.
Best regards
Blama
what is the suggested approach if I have a field that links to many fields via foreignKey?
I'd link to establish a link between the DataSources in order to includeFrom this DS into many other DS.
I can't have
Code:
foreignKey="DS1.PK" foreignKey="DS2.PK"
Code:
<field name="name" type="integer"> <foreignKey>DS1.PK</foreignKey> <foreignKey>DS2.PK</foreignKey> </field>
What is the suggested approach here? The last (dirty) solution I could think of are two (or more) different fields all pointing to the same db-field with nativeName and each with one foreignKey-attribute.
Best regards
Blama
Comment