博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将LINQ查询的结果转化为DataTable
阅读量:5019 次
发布时间:2019-06-12

本文共 2108 字,大约阅读时间需要 7 分钟。

using System;

using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using COMMON.DATA;

namespace COMMON

{
  public static class DataHelper
  {

    public static DataTable _data;

    public static DataTable Data
  {
    get { return _data; }
    set { _data = value; }
  }

public static DataTable GetData()

{
  DATA.ProTestDataContext dataContext=new ProTestDataContext();
  var dt = from fx in dataContext.TaskTab select fx;
  DataTable dtt=new DataTable();
  dtt = ConvertToDataTable(dt.ToList());
  Data = dtt;
  return Data;
}

#region "Convert Generic List to DataTable"

/// <summary>
/// Convert a List{T} to a DataTable.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="items"></param>
/// <returns></returns>
public static DataTable ConvertToDataTable<T>(this List<T> items)
{
  var tb = new DataTable(typeof(T).Name);

  PropertyInfo[] props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);

  foreach (PropertyInfo prop in props)

  {
    Type t = GetCoreType(prop.PropertyType);
    tb.Columns.Add(prop.Name, t);
  }

  foreach (T item in items)

  {
    var values = new object[props.Length];

    for (int i = 0; i < props.Length; i++)

    {
      values[i] = props[i].GetValue(item, null);
    }
    tb.Rows.Add(values);
  }
  return tb;
}

/// <summary>

/// Determine of specified type is nullable
/// </summary>
/// <param name="t"></param>
/// <returns></returns>
public static bool IsNullable(Type t)
{
  return !t.IsValueType || (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>));
}

/// <summary>

/// Return underlying type if type is Nullable otherwise return the type.
/// </summary>
/// <param name="t"></param>
/// <returns></returns>
public static Type GetCoreType(Type t)
{
  if (t != null && IsNullable(t))
  {
    if (!t.IsValueType)
    {
      return t;
    }
    else
    {
      return Nullable.GetUnderlyingType(t);
    }
  }
  else
  {
    return t;
  }
}
#endregion
  }
}

转载于:https://www.cnblogs.com/HedgehogBlog/p/3614160.html

你可能感兴趣的文章
Modular Inverse [ZOJ 3609]
查看>>
MySQL性能测试工具之mysqlslap使用详解
查看>>
深入理解jsonp跨域请求原理
查看>>
regsvr32注册COM组件失败
查看>>
jmeter,CSV数据加载、数据库连接、正则
查看>>
MySQL学习点滴 --分区表
查看>>
4.6.1 测试基础
查看>>
洛谷 P2486 [SDOI2011]染色
查看>>
oo第三单元总结
查看>>
leetcode : Count and Say [基本功]
查看>>
洛谷 P2485 [SDOI2011]计算器 解题报告
查看>>
Slickflow.NET 开源工作流引擎基础介绍(三) -- 基于HTML5/Bootstrap的Web流程设计器
查看>>
Node教程
查看>>
java将字段映射成另一个字段,关于 接口传参 字段不对应转换
查看>>
Redis
查看>>
HTTP(一)工作机制
查看>>
条形码扫描枪数据读取的问题
查看>>
健壮的 Java 基准测试
查看>>
phpstorm查看类的继承关系
查看>>
Amd,Cmd, Commonjs, ES6 import/export的异同点
查看>>