我有以下数据表 - 假设被称为MyTable
:
Col1: Col2: Col3: Col4:
1 abc def <null>
2 abc def ghi
1 abc def <null>
3 abc def <null>
1 abc def <null>
我正在尝试获取不同的行:
Col1: Col2: Col3: Col4:
1 abc def <null>
2 abc def ghi
3 abc def <null>
我尝试了以下 LINQ 语句:
MyTable = (From dr As DataRow In MyTable Select dr).Distinct.CopyToDataTable
但它会将带有重复行的原始数据表返回给我。
我做错了什么,我怎样才能得到我想要的输出?