TypedTableBaseExtensions.AsEnumerable<TRow> メソッド

定義

TypedTableBase<T> のデータ行要素を列挙し、EnumerableRowCollection<TRow> オブジェクトを返します。ここで、ジェネリック パラメーター TDataRow です。 このオブジェクトは、LINQ 式またはメソッド クエリで使用できます。

public:
generic <typename TRow>
 where TRow : System::Data::DataRow[System::Runtime::CompilerServices::Extension]
 static System::Data::EnumerableRowCollection<TRow> ^ AsEnumerable(System::Data::TypedTableBase<TRow> ^ source);
public static System.Data.EnumerableRowCollection<TRow> AsEnumerable<TRow> (this System.Data.TypedTableBase<TRow> source) where TRow : System.Data.DataRow;
static member AsEnumerable : System.Data.TypedTableBase<'Row (requires 'Row :> System.Data.DataRow)> -> System.Data.EnumerableRowCollection<'Row (requires 'Row :> System.Data.DataRow)> (requires 'Row :> System.Data.DataRow)
<Extension()>
Public Function AsEnumerable(Of TRow As DataRow) (source As TypedTableBase(Of TRow)) As EnumerableRowCollection(Of TRow)

型パラメーター

TRow

元の要素の変換後の型。

パラメーター

source
TypedTableBase<TRow>

列挙可能にする対象のソース TypedTableBase<T>

戻り値

EnumerableRowCollection<TRow> オブジェクト。ここで、ジェネリック パラメーター TDataRow です。

適用対象