我有这个工作:
Dim locations = From row In allLocations.AsEnumerable()
Where row.Field(Of String)("PartNr") Is Nothing
Select row
它获取没有零件编号的所有位置。但我想做这样的事情来获取除一些记录之外的所有内容:
Dim locations = From row In allLocations.AsEnumerable()
Where row.Field(Of String)("PartNr") Not Like "12345"
Select row