What linq features are currently not supported in SS3? Can't seem to find a list.
Ta,
Bob
我认为联合是不支持的一项功能。我上周刚遇到这个,在这里搜索并找到了更多信息。
此外,您不能在自定义对象中进行非匿名选择。尽管
from elem in XCollection select new
with {.customField = elem.someProperty}
效果很好,这不会:
from elem in XCollection select new CustomClass _
with {.customField = elem.someProperty}
左连接也不支持。