Reputation:
What linq features are currently not supported in SS3? Can't seem to find a list.
Ta,
Bob
Upvotes: 2
Views: 195
Reputation: 500
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.
Upvotes: 0