views:

128

answers:

2

Hi,

What linq features are currently not supported in SS3? Can't seem to find a list.

Ta,

Bob

+1  A: 

I think union is one feature not supported. I just ran into this last week, searched and found more info here.

djuth
A: 

Also, you can't make an non-anonymous select in a custom object. While

from elem in XCollection select new 
with {.customField = elem.someProperty}

works well, this doesn't:

from elem in XCollection select new CustomClass _
with {.customField = elem.someProperty}

Left joins are also unsupported.

Apocatastasis