我缺少一些非常基本的东西,我不知道...我在关注Linq时遇到异常:

Dim arch As List(Of String)
'gets archive as String() and casts it as List
arch = client.GetArchive().ToList()
'here exception occurs: Cannot cast object of type 'WhereSelectListIterator`2'...
arch = From a In arch
       Where a.EndsWith(System.Environment.UserName & ".htm")
       Select a

最佳答案

如它所说,您正在尝试将where迭代器存储到列表中。

试试这个:

arch = arch.where(Function(x)x.EndsWith(System.Environment.UserName & ".htm")).ToList()

我更喜欢扩展名linq,但这只是首选项,我的工作原因是因为ToList() :)

关于vb.net - 无法运行基本的LINQ查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46905702/

10-12 15:46