Queryable.Intersect メソッド

定義

2 つのシーケンスの積集合を生成します。

オーバーロード

Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>)

既定の等値比較子を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。

Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)

指定された IEqualityComparer<T> を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。

Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>)

ソース:
Queryable.cs
ソース:
Queryable.cs
ソース:
Queryable.cs

既定の等値比較子を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ Intersect(System::Linq::IQueryable<TSource> ^ source1, System::Collections::Generic::IEnumerable<TSource> ^ source2);
public static System.Linq.IQueryable<TSource> Intersect<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);
static member Intersect : System.Linq.IQueryable<'Source> * seq<'Source> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Intersect(Of TSource) (source1 As IQueryable(Of TSource), source2 As IEnumerable(Of TSource)) As IQueryable(Of TSource)

型パラメーター

TSource

入力シーケンスの要素の型。

パラメーター

source1
IQueryable<TSource>

source2 にも含まれる、返される一意の要素を含むシーケンス。

source2
IEnumerable<TSource>

最初のシーケンスにも含まれる、返される一意の要素を含むシーケンス。

戻り値

IQueryable<TSource>

2 つのシーケンスの積集合を含むシーケンス。

例外

source1 または source2null です。

次のコード例では、 を使用 Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>) して、2 つのシーケンスのそれぞれに表示される要素を返す方法を示します。

int[] id1 = { 44, 26, 92, 30, 71, 38 };
int[] id2 = { 39, 59, 83, 47, 26, 4, 30 };

// Get the numbers that occur in both arrays (id1 and id2).
IEnumerable<int> both = id1.AsQueryable().Intersect(id2);

foreach (int id in both)
    Console.WriteLine(id);

/*
    This code produces the following output:

    26
    30
*/
Dim id1() As Integer = {44, 26, 92, 30, 71, 38}
Dim id2() As Integer = {39, 59, 83, 47, 26, 4, 30}

' Get the numbers that occur in both arrays (id1 and id2).
Dim both As IEnumerable(Of Integer) = id1.AsQueryable().Intersect(id2)

Dim output As New System.Text.StringBuilder
For Each id As Integer In both
    output.AppendLine(id)
Next

' Display the output.
MsgBox(output.ToString())

' This code produces the following output:

' 26
' 30

注釈

メソッドは Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>)MethodCallExpression 構築されたジェネリック メソッドとしての呼び出し Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>) 自体を表す を生成します。 次に、 パラメーターの MethodCallExpressionCreateQuery<TElement>(Expression) プロパティで表される の IQueryProvider メソッドに をProvidersource1渡します。

呼び出し Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>) を表す式ツリーを実行した結果として発生するクエリ動作は、 パラメーターの型の source1 実装によって異なります。 予期される動作は、 内にあるすべての 要素 source1source2 返されるということです。

適用対象

Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)

ソース:
Queryable.cs
ソース:
Queryable.cs
ソース:
Queryable.cs

指定された IEqualityComparer<T> を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Linq::IQueryable<TSource> ^ Intersect(System::Linq::IQueryable<TSource> ^ source1, System::Collections::Generic::IEnumerable<TSource> ^ source2, System::Collections::Generic::IEqualityComparer<TSource> ^ comparer);
public static System.Linq.IQueryable<TSource> Intersect<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource> comparer);
public static System.Linq.IQueryable<TSource> Intersect<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2, System.Collections.Generic.IEqualityComparer<TSource>? comparer);
static member Intersect : System.Linq.IQueryable<'Source> * seq<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Intersect(Of TSource) (source1 As IQueryable(Of TSource), source2 As IEnumerable(Of TSource), comparer As IEqualityComparer(Of TSource)) As IQueryable(Of TSource)

型パラメーター

TSource

入力シーケンスの要素の型。

パラメーター

source1
IQueryable<TSource>

source2 にも含まれる、返される一意の要素を含む IQueryable<T>

source2
IEnumerable<TSource>

最初のシーケンスにも含まれる、返される一意の要素を含む IEnumerable<T>

comparer
IEqualityComparer<TSource>

値を比較する IEqualityComparer<T>

戻り値

IQueryable<TSource>

2 つのシーケンスの積集合を含む IQueryable<T>

例外

source1 または source2null です。

注釈

メソッドは Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)MethodCallExpression 構築されたジェネリック メソッドとしての呼び出し Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) 自体を表す を生成します。 次に、 パラメーターの MethodCallExpressionCreateQuery<TElement>(Expression) プロパティで表される の IQueryProvider メソッドに をProvidersource1渡します。

呼び出し Intersect<TSource>(IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) を表す式ツリーを実行した結果として発生するクエリ動作は、 パラメーターの型の source1 実装によって異なります。 予期される動作は、 内にあるすべての 要素 source1source2 返されるということです。 パラメーターは comparer 、要素を比較するために使用されます。

適用対象