Hi, I'm experimenting with linq compount selects. I find the following query not to return any element:
Dim q = From s In d.GetChildRows("DossierSinistri") _
From i In s.GetChildRows("DossierIncarichi") _
Select s
while the following does:
Dim q = From s In d.GetChildRows("DossierSinistri") _
Select s
Any help?