• Linq 杂谈(之)IEnumerable<T> 转换 DataTable


    Sample I:

    I created a public method called LINQToDataTable as following:

    public DataTable LINQToDataTable<T>(IEnumerable<T> varlist)
    {
         DataTable dtReturn = new DataTable();

         // column names 
         PropertyInfo[] oProps = null;

         if (varlist == nullreturn dtReturn;

         foreach (T rec in varlist)
         {
              // Use reflection to get property names, to create table, Only first time, others 
              will follow 
              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;
    }

    ---------------------------------------------------------------

    Example: To use this method, just use the following code sample:

    ---------------------------------------------------------------

    var vrCountry = from country in objEmpDataContext.CountryMaster
                            select new {country.CountryID,country.CountryName};

    DataTable dt = LINQToDataTable(vrCountry);

    Sample II

    Here is my second method:

    public DataTable ToDataTable(System.Data.Linq.DataContext ctx, object query)
    {
         if (query == null)
         {
              throw new ArgumentNullException("query");
         }
         
         
    IDbCommand
     cmd = ctx.GetCommand(query as IQueryable);
         SqlDataAdapter adapter = new SqlDataAdapter();
         adapter.SelectCommand = (
    SqlCommand)cmd;
         DataTable dt = new DataTable("sd");

         try
         {
              cmd.Connection.Open();
              adapter.FillSchema(dt, 
    SchemaType.Source); 
              adapter.Fill(dt);
         }
         finally
         {
              cmd.Connection.Close();
         }
         return dt;
    }

    ---------------------------------------------------------------

    Example: To use this method, just use the following code sample:

    ---------------------------------------------------------------

    var vrCountry = from country in objEmpDataContext.CountryMaster
                            select new {country.CountryID,country.CountryName};

    DataTable dt = LINQToDataTable(objEmpDataContext,vrCountry);

  • 相关阅读:
    关于工作流的思考
    RssBandit.net应用示例(RSS聚集器)[暂未完成]
    前端是否应该将css和js分开设置两个不同岗位
    初中级工程师是否应急于学习html5?
    招聘条件中的学历问题
    禁止拖动屏幕
    html5全屏api
    html5兼容陷阱合集
    borderimage试用心得
    web app的一些特殊meta和link标签
  • 原文地址:https://www.cnblogs.com/yangtongnet/p/1772314.html
Copyright © 2020-2023  润新知