Hi.
When a One to Many relationship is defined a Link-Multiple field is included in the ONE Entity with the name of the MANY Entity ended in s. In this example should be called 'mANYs'.
That field has two attributes: fieldIds, fieldNames. In this case mANYsIds and mANYsNames
The question is how I can know the individual Ids included in mANYsIds.
I have tried:
mANYsIds($counter)
mANYsIds[$counter]
array\at(mANYsIds, $counter).
But all of them unsuccessful.
How can I get the individual ids?
Thanks in advance for your help
When a One to Many relationship is defined a Link-Multiple field is included in the ONE Entity with the name of the MANY Entity ended in s. In this example should be called 'mANYs'.
That field has two attributes: fieldIds, fieldNames. In this case mANYsIds and mANYsNames
The question is how I can know the individual Ids included in mANYsIds.
I have tried:
mANYsIds($counter)
mANYsIds[$counter]
array\at(mANYsIds, $counter).
But all of them unsuccessful.
How can I get the individual ids?
Thanks in advance for your help
Comment