Hi,
I am using SelfService.
I have two entities with a 1:n relation, e.g Adress and AdressDetail both with their own PK.
When I retrieve an Adress entity, I can access the AdressDetail entities directly via the relation attribute. What is the order in which the AdressDetail entities are made available via the relation attribute?
e.g.
AdressEntity adress = new AdressEntity(123);
foreach (AdressDetailEntity adressDetail in adress.AdressDetail)
{
Console.Writeline(adressDetail.text);
}
Is there a fixed order in the displayed lines, for instance the PK of the AdressDetail entity?
Kind regards,
Jan