66

LINQTOSQLですべてのユニオンを使用する方法。私はユニオンに次のコードを使用しましたが、これをすべてのユニオンに使用するにはどうすればよいですか?

List<tbEmployee> lstTbEmployee = obj.tbEmployees.ToList();
List<tbEmployee2> lstTbEmployee2 = (from a in lstTbEmployee
                                    select new tbEmployee2
                                    {
                                        eid = a.eid,
                                        ename = a.ename,
                                        age = a.age,
                                        dept = a.dept,
                                        doj = a.doj,
                                        dor = a.dor

                                    }).Union(obj.tbEmployee2s).ToList();
4

1 に答える 1

125

ConcatUNION ALLSQLのLINQに相当するものです。

Unionとの使用方法を示すために、LINQPadで簡単な例を設定しましたConcatLINQPadをお持ちでない場合は、入手してください。

これらのセット操作の異なる結果を表示できるようにするには、データの1番目と2番目のセットに少なくともある程度のオーバーラップが必要です。以下の例では、両方のセットに「not」という単語が含まれています。

LINQPadを開き、[言語]ドロップダウンを[C#ステートメント]に設定します。以下をクエリペインに貼り付けて実行します。

string[] jedi = { "These", "are", "not" };
string[] mindtrick = { "not", "the", "droids..." };

// Union of jedi with mindtrick
var union =
  (from word in jedi select word).Union
  (from word in mindtrick select word);

// Print each word in union
union.Dump("Union");
// Result: (Note that "not" only appears once)
// These are not the droids...

// Concat of jedi with mindtrick (equivalent of UNION ALL)
var unionAll =
  (from word in jedi select word).Concat
  (from word in mindtrick select word);

// Print each word in unionAll
unionAll.Dump("Concat");
// Result: (Note that "not" appears twice; once from each dataset)
// These are not not the droids...

// Note that union is the equivalent of .Concat.Distinct
var concatDistinct =
  (from word in jedi select word).Concat
  (from word in mindtrick select word).Distinct();

// Print each word in concatDistinct
concatDistinct.Dump("Concat.Distinct");
// Result: (same as Union; "not" only appears once)
// These are not the droids...

LinqPadの結果は次のようになります。

ここに画像の説明を入力してください

于 2012-04-28T04:20:25.913 に答える