I'm experiencing some trouble when i try to prefetch two distinct subpath of a subnode in adapter scenario.
See the following example:
Grandparent
[id]
[name]
Parent
[id]
[grandparentId]
[name]
Child1
[id]
[parentId]
[name]
Child2
[id]
[parentId]
[name]
it loads the first subpath only, any cludes?
I'm using the correct code?
IPrefetchPath2 prefetchPath = new PrefetchPath2((int)EntityType.GrandParentEntity);
prefetchPath.Add(GrandParentEntity.PrefetchPathParent).SubPath.Add(ParentEntity.PrefetchPathChild1);
prefetchPath.Add(GrandParentEntity.PrefetchPathParent).SubPath.Add(ParentEntity.PrefetchPathChild2);
thanks,
Dieter.