Enumerable.AsEnumerable<TSource>(IEnumerable<TSource>) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IEnumerable<T> として型指定された入力を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ AsEnumerable(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Generic.IEnumerable<TSource> AsEnumerable<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member AsEnumerable : seq<'Source> -> seq<'Source>
<Extension()>
Public Function AsEnumerable(Of TSource) (source As IEnumerable(Of TSource)) As IEnumerable(Of TSource)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
IEnumerable<T> として型指定するシーケンス。
戻り値
IEnumerable<T> として型指定された入力シーケンス。
例
次のコード例では、 を使用 AsEnumerable<TSource>(IEnumerable<TSource>) して、標準のクエリ演算子の実装が必要な場合に型のカスタム Where
メソッドを非表示にする方法を示します。
// Custom class.
class Clump<T> : List<T>
{
// Custom implementation of Where().
public IEnumerable<T> Where(Func<T, bool> predicate)
{
Console.WriteLine("In Clump's implementation of Where().");
return Enumerable.Where(this, predicate);
}
}
static void AsEnumerableEx1()
{
// Create a new Clump<T> object.
Clump<string> fruitClump =
new Clump<string> { "apple", "passionfruit", "banana",
"mango", "orange", "blueberry", "grape", "strawberry" };
// First call to Where():
// Call Clump's Where() method with a predicate.
IEnumerable<string> query1 =
fruitClump.Where(fruit => fruit.Contains("o"));
Console.WriteLine("query1 has been created.\n");
// Second call to Where():
// First call AsEnumerable() to hide Clump's Where() method and thereby
// force System.Linq.Enumerable's Where() method to be called.
IEnumerable<string> query2 =
fruitClump.AsEnumerable().Where(fruit => fruit.Contains("o"));
// Display the output.
Console.WriteLine("query2 has been created.");
}
// This code produces the following output:
//
// In Clump's implementation of Where().
// query1 has been created.
//
// query2 has been created.
Dim output As New System.Text.StringBuilder
' A custom class.
Class Clump(Of T)
Inherits List(Of T)
' Constructor.
Public Sub New(ByVal collection As IEnumerable(Of T))
MyBase.New(collection)
End Sub
' Custom implementation of Where().
Function Where(ByVal predicate As Func(Of T, Boolean)) As IEnumerable(Of T)
output.AppendLine("In Clump's implementation of Where().")
Return Enumerable.Where(Me, predicate)
End Function
End Class
Sub AsEnumerableEx1()
' Create a new Clump(Of T) object.
Dim fruitClump As New Clump(Of String)(New String() _
{"apple", "passionfruit", "banana",
"mango", "orange", "blueberry",
"grape", "strawberry"})
' First call to Where():
' Call Clump's Where() method with a predicate.
Dim query1 As IEnumerable(Of String) =
fruitClump.Where(Function(fruit) fruit.Contains("o"))
output.AppendLine("query1 has been created." & vbCrLf)
' Second call to Where():
' First call AsEnumerable() to hide Clump's Where() method and thereby
' force System.Linq.Enumerable's Where() method to be called.
Dim query2 As IEnumerable(Of String) =
fruitClump.AsEnumerable().Where(Function(fruit) fruit.Contains("o"))
output.AppendLine("query2 has been created.")
' Display the output.
Console.WriteLine(output.ToString())
End Sub
' This code produces the following output:
'
' In Clump's implementation of Where().
' query1 has been created.
'
' query2 has been created.
注釈
メソッドはAsEnumerable<TSource>(IEnumerable<TSource>)、 のコンパイル時の型を、 を実装IEnumerable<T>する型source
からそれ自体に変更する以外のIEnumerable<T>効果はありません。
AsEnumerable<TSource>(IEnumerable<TSource>) を使用すると、シーケンス IEnumerable<T> が実装されているが、使用できるパブリック クエリ メソッドのセットが異なる場合に、クエリ実装を選択できます。 たとえば、 を実装IEnumerable<T>し、独自のメソッド (、SelectMany
Select
、 などWhere
) を持つジェネリック クラスTable
を指定すると、 のWhere
パブリック Where
メソッドTable
が呼び出されます。 Table
データベース テーブルを表す型には、述語引数をWhere
式ツリーとして受け取り、リモート実行のためにツリーを SQL に変換するメソッドを使用できます。 たとえば、述語がローカル メソッドを呼び出すなどの理由でリモート実行が必要ない場合は、 メソッドを AsEnumerable 使用してカスタム メソッドを非表示にし、代わりに標準クエリ演算子を使用できるようにします。
適用対象
.NET