标签:linq rabl tab str int lin field style margin
//经理
List<string> jtlist = (from t in jtTable.AsEnumerable()
group t by new
{
t1 = t.Field<string>("JTManager")
} into m
select new
{
JTManager = m.Key.t1
} into c
where !string.IsNullOrEmpty(c.JTManager)
select c.JTManager).ToList();
DataTable中Linq查询(where,group by)
标签:linq rabl tab str int lin field style margin
原文地址:http://www.cnblogs.com/liuperit/p/6933382.html