我正在使用两个表(A&B)来导出 B 中不存在的项目 A 的列表。
Dim results1 = From table1 In dt2 Where Not (From table2 In dt1 Where DirectCast(table2(0), String) = DirectCast(table1(0), String)).Any() Select DirectCast(table1(0), String)
但我收到错误
Unable to cast object of type 'System.Double' to type 'System.String'.
我需要在哪里进行转换?