私は2つのテーブル(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'.
どこで変換を行う必要がありますか?