web-dev-qa-db-ja.com

ベストプラクティス:ループせずにLINQクエリの結果をDataTableに変換する

LINQ-Queryの結果を新しいDataTableに変換するためのベストプラクティスは何ですか?
すべての結果項目をforeachよりも良い解決策を見つけることができますか?

[〜#〜] edit [〜#〜]AnonymousType

var rslt = from eisd in empsQuery
           join eng in getAllEmployees()
           on eisd.EMPLOYID.Trim() equals eng.EMPLOYID.Trim()
           select new
           {
               eisd.CompanyID,
               eisd.DIRECTID,
               eisd.EMPLOYID,
               eisd.INACTIVE,
               eisd.LEVEL,
               eng.EnglishName
           };

EDIT 2:例外が発生しました:

Contains()演算子以外のクエリ演算子のLINQ to SQL実装では、ローカルシーケンスを使用できません。

私はクエリを実行しようとし、ここで解決策を見つけました IEnumerable.Exceptは機能しませんので、私は何をしますか?
and Linqヘルプが必要

22
Rami Shareef

Linq to Datasetを使用します。 MSDNから: クエリからのDataTableの作成(LINQ to DataSet

// Query the SalesOrderHeader table for orders placed 
// after August 8, 2001.
IEnumerable<DataRow> query =
    from order in orders.AsEnumerable()
    where order.Field<DateTime>("OrderDate") > new DateTime(2001, 8, 1)
    select order;

// Create a table from the query.
DataTable boundTable = query.CopyToDataTable<DataRow>();

匿名型がある場合:

Coderブログから: Linq匿名型とCopyDataTableを使用

MSDNの使用方法について説明します 方法:ジェネリック型TがDataRowではない場合のCopyToDataTableの実装

32
LaGrandMere

DataTablesジェネリック関数でのクエリ結果の変換

 DataTable ddt = new DataTable();

 ddt = LINQResultToDataTable(query);

    public DataTable LINQResultToDataTable<T>(IEnumerable<T> Linqlist)
    {
        DataTable dt = new DataTable();


        PropertyInfo[] columns = null;

        if (Linqlist == null) return dt;

        foreach (T Record in Linqlist)
        {

            if (columns == null)
            {
                columns = ((Type)Record.GetType()).GetProperties();
                foreach (PropertyInfo GetProperty in columns)
                {
                    Type colType = GetProperty.PropertyType;

                    if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition()
                    == typeof(Nullable<>)))
                    {
                        colType = colType.GetGenericArguments()[0];
                    }

                    dt.Columns.Add(new DataColumn(GetProperty.Name, colType));
                }
            }

            DataRow dr = dt.NewRow();

            foreach (PropertyInfo pinfo in columns)
            {
                dr[pinfo.Name] = pinfo.GetValue(Record, null) == null ? DBNull.Value : pinfo.GetValue
                (Record, null);
            }

            dt.Rows.Add(dr);
        }
        return dt;
    }  
2
Huzaifa Khan

System.Reflectionを使用し、クエリオブジェクトの各レコードに対して繰り返します。

Dim dtResult As New DataTable
Dim t As Type = objRow.GetType
Dim pi As PropertyInfo() = t.GetProperties()

For Each p As PropertyInfo In pi
    dtResult.Columns.Add(p.Name)
Next
Dim newRow = dtResult.NewRow()
For Each p As PropertyInfo In pi
    newRow(p.Name) = p.GetValue(objRow,Nothing)
Next
dtResult.Rows.Add(newRow.ItemArray)
Return dtResult
1
Deepak Mishra

Asp.net WebアプリケーションのNulinパッケージマネージャーコンソールでmorelinq.2.2.0パッケージを使用しています

PM> Install-Package morelinq

名前空間

using MoreLinq;

プロファイルの詳細を返すサンプルストアドプロシージャsp_Profile()

DataTable dt = context.sp_Profile().ToDataTable();
1