Hi All,
By running through the manual again I found out about this feature, and a situation I would think it's handy.
I've got Shifts (working shifts) which have their JobTitle via table Job and Client and JobLocation are link to the Job and also needed always in this situation.
So I tried:
IPrefetchPath prePath = new PrefetchPath((int)EntityType.ShiftEntity);
prePath.Add(ShiftEntity.PrefetchPathJob).SubPath.Add(JobEntity.PrefetchPathRelation);
prePath.Add(ShiftEntity.PrefetchPathJob).SubPath.Add(JobEntity.PrefetchPathJobLocation);
It worked with the 2nd one commented out, but I guess I don't understand it yet.
Can anyone give some pointers?
Greets,
Gab