Hi guys,
Is it possible to mix prefetch lambdas and paths? Looks like the last .WithPath statement wins and previous statement isn't considered at all.
from g in meta.Something
.WithPath(lamba path) // <-- ignored
.WithPath(PathEdge) // <-- this wins
Miha