bob
bob

Reputation:

What LINQ features are not supported with SubSonic 3?

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

Ta,

Bob

Upvotes: 2

Views: 195

Answers (2)

Apocatastasis
Apocatastasis

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

djuth
djuth

Reputation: 985

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

Upvotes: 1

Related Questions