2

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

Ta,

Bob

4

2 回答 2

1

我认为联合是不支持的一项功能。我上周刚遇到这个,在这里搜索并找到了更多信息。

于 2010-01-06T05:29:26.907 回答
0

此外,您不能在自定义对象中进行非匿名选择。尽管

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

效果很好,这不会:

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

左连接也不支持。

于 2010-01-08T02:14:59.817 回答