linq查询DataTable中的某列去重数据
Posted zhaogaojian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linq查询DataTable中的某列去重数据相关的知识,希望对你有一定的参考价值。
List<int> lstHashCode = (from d in dtEquipInfo.AsEnumerable() select d.Field<int>("hashcode")).Distinct().ToList();
其中dtEquipInfo是一个带有hashcode列的DataTable
以上是关于linq查询DataTable中的某列去重数据的主要内容,如果未能解决你的问题,请参考以下文章