这篇文章主要介绍了C#中的DataTable查询实战教程,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
DataTable查询
工作中遇到了需要进行DataTable进行查询的需求,简单研究了一下,最终使用一下方案实现,简单记录一下便于以后使用。
DataTable dt = dataBox.GetDataForDataTable();//获取DataTable所有数据,准备进行查询
DataRow[] dtRow = dt.Select("调剂日期=‘"+MediumCode.Text.Trim()+"'");//根据查询条件,筛选出所有满足条件的列
DataTable dtNew = dt.Clone();//克隆与原表结构相同的新表(不包括数据)
foreach (DataRow item in dtRow)//把满足条件的所有列赛到新表中
{
dtNew.ImportRow(item);
}
dataBox.DataBinding(dtNew);//给控件绑定新值(即查询结果)
补充:C# 通过LINQ对DataTable数据查询,结果生成DataTable
我就废话不多说啦,大家还是直接看代码吧~
var query = from g in dt_stu.AsEnumerable()
group g by new {
t1 = g.Field<string>("STU_ID"),
t2 = g.Field<string>("CLASS_ID")
} into m
select new
{
STU_ID = m.Key.t1,
CLASS_ID=m.Key.t2,
成绩总合计 = m.Sum(a => a.Field<decimal>("成绩")),
优秀人数 = m.Count(a => a.Field<decimal>("成绩")>95)
};
DataTable dt_article = UserClass.ToDataTable(query);
/// <summary>
/// LINQ返回DataTable类型
/// </summary>
/// <typeparam name="T"> </typeparam>
/// <param name="varlist"> </param>
/// <returns> </returns>
public static DataTable ToDataTable<T>(IEnumerable<T> varlist)
{
DataTable dtReturn = new DataTable();
// column names
PropertyInfo[] oProps = null;
if (varlist == null)
return dtReturn;
foreach (T rec in varlist)
{
if (oProps == null)
{
oProps = ((Type)rec.GetType()).GetProperties();
foreach (PropertyInfo pi in oProps)
{
Type colType = pi.PropertyType;
if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition()
== typeof(Nullable<>)))
{
colType = colType.GetGenericArguments()[0];
}
dtReturn.Columns.Add(new DataColumn(pi.Name, colType));
}
}
DataRow dr = dtReturn.NewRow();
foreach (PropertyInfo pi in oProps)
{
dr[pi.Name] = pi.GetValue(rec, null) == null ? DBNull.Value : pi.GetValue
(rec, null);
}
dtReturn.Rows.Add(dr);
}
return dtReturn;
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持得得之家。如有错误或未考虑完全的地方,望不吝赐教。
沃梦达教程
本文标题为:C#中的DataTable查询实战教程
基础教程推荐
猜你喜欢
- ZooKeeper的安装及部署教程 2023-01-22
- C#类和结构详解 2023-05-30
- C# 调用WebService的方法 2023-03-09
- unity实现动态排行榜 2023-04-27
- C# List实现行转列的通用方案 2022-11-02
- winform把Office转成PDF文件 2023-06-14
- C# windows语音识别与朗读实例 2023-04-27
- C#控制台实现飞行棋小游戏 2023-04-22
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- 一个读写csv文件的C#类 2022-11-06