将linq查询结果转换为数据表C#

时间:2013-09-04 08:30:45

标签: asp.net c#-4.0

我想将linq查询结果转换为datatable,以便我可以将数据表分配给GridView以在asp页面上显示它。

但是我无法将结果转换为datatable,我的代码中没有得到CopyToTable()方法。

请告诉我这里做错了什么?

 var gradeData = (from data in oAngieCtxt.prc_ShopInstanceCustomersData(Convert.ToInt32(this.ShopInstanceID), 10000, false)
                     .Where( row => row.RecievedPoints != "n/a" )
                    .GroupBy(row => new { row.Name })
                    .Select(g => new GroupedPoints()
                    {
                        Name = g.Key.Name,
                        TotalPoints = g.Sum(x => Convert.ToDouble(x.RecievedPoints) * (x.Weightage.ToString() == "0.00" ? 1 : Convert.ToDouble(x.Weightage)))
                    })
                     select data).ToList();

 DataTable dt = gradeData --gradeData.CopyToTable()

注意:可以使用对dataextentions dll的引用。

提前致谢

3 个答案:

答案 0 :(得分:5)

你应该得到DataTableExtensions.CopyToDataTable

删除ToList()

CopyToDataTable是一个IEnumerable<DataRow>扩展名(不幸的是)。

下面有一个自定义CopyToDataTable扩展方法的解决方案。

var gradeData = (from data in oAngieCtxt.prc_ShopInstanceCustomersData(
                 Convert.ToInt32(this.ShopInstanceID), 10000, false)
                .Where( row => row.RecievedPoints != "n/a" )
                .GroupBy(row => new { row.Name })
                .Select(g => new
                {
                    Name = g.Key.Name,
                    TotalPoints = g.Sum(x => Convert.ToDouble(x.RecievedPoints) 
                    * (x.Weightage.ToString() == "0.00" ? 1 
                      : Convert.ToDouble(x.Weightage)))
                })
                 select data);

var dt = gradeData.CopyToDataTable();

修改

这是CopyToDataTable更有用的实现.DataRow没有类型约束。

  public static class DataSetLinqOperators
  {
    public static DataTable CopyToDataTable<T>(this IEnumerable<T> source)
    {
        //you find the ObjectShredder implementation on the blog wich was linked.
        return new ObjectShredder<T>().Shred(source, null, null);
    }

    public static DataTable CopyToDataTable<T>(this IEnumerable<T> source, 
                                     DataTable table, LoadOption? options)
    {
        return new ObjectShredder<T>().Shred(source, table, options);
    }

  }

答案 1 :(得分:4)

首先声明一个新的DataTable并添加列,其中包括:

DataTable dt = new DataTable();
dt.Columns.Add("FirstName");
dt.Columns.Add("LastName");
DataRow row = null;

现在我只是遍历查询并填充DataTable:

foreach (var rowObj in query)
{
    row = dt.NewRow();
    dt.Rows.Add(rowObj.FirstName, rowObj.LastName);
}

答案 2 :(得分:1)

如果您想拥有自己的扩展方法,那么您可以随时执行以下操作:

    public static DataTable ToDataTable<T>(this IQueryable items)
    {
        Type type = typeof(T);

        var props = TypeDescriptor.GetProperties(type)
                                  .Cast<PropertyDescriptor>()
                                  .Where(propertyInfo => propertyInfo.PropertyType.Namespace.Equals("System"))
                                  .Where(propertyInfo => propertyInfo.IsReadOnly == false)
                                  .ToArray();

        var table = new DataTable();

        foreach (var propertyInfo in props)
        {
            table.Columns.Add(propertyInfo.Name, Nullable.GetUnderlyingType(propertyInfo.PropertyType) ?? propertyInfo.PropertyType);
        }

        foreach (var item in items)
        {
            table.Rows.Add(props.Select(property => property.GetValue(item)).ToArray());
        }

        return table;
    }

您需要参考这两个

using System.ComponentModel;
using System.Data;