Hi,
I have the following tables:
Assignment - 1:m - AssignmentSubSkill - 1:m - Score
I have the following prefetch that works:
Dim PrefetchPath As IPrefetchPath2 = New PrefetchPath2(CType(EntityType.AssignmentEntity, Integer))
PrefetchPath.Add(AssignmentEntity.PrefetchPathGroupAssignment)
PrefetchPath.Add(AssignmentEntity.PrefetchPathAssignmentSubSkill)
I can't prefecth the Score records from the Assignment collection.
I've attempted to add the relationship in the designer but have failed
How do I set it up so that I can do the Prefecth?
Thanks,
Fishy