DistinctByT(IEnumerableT, String, String) |
二维数组集合去重 按指定列做关键字 arr.AsEnumerable.DistinctBy("F1,F2") 按 1列@^@2列 作为关键字去重 |
DistinctByT(T, String, String) |
2维数组去重 按指定列做关键字 arr.DistinctBy("1,2") 按 1列作为关键字去重 |
DistinctByTSource, TKey(IEnumerableTSource, FuncTSource, TKey) | Linq增强扩展,按指定规则去重 |
DistinctByT, TResult(T, String, FuncObject, TResult, String) |
二维数组集合去重 按指定列做关键字 可选结果列 arr.AsEnumerable.DistinctBy("F1,F2",Function(x) {x.F1,x.F2,x.F3}) 按 1列@^@2列 作为关键字去重 结果选取1 2 3列 |