EnumerableRowCollectionExtensions::Where<TRow> Method (EnumerableRowCollection<TRow>^, Func<TRow, Boolean>^)
Filters a sequence of rows based on the specified predicate. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Assembly: System.Data.DataSetExtensions (in System.Data.DataSetExtensions.dll)
public: generic<typename TRow> [ExtensionAttribute] static EnumerableRowCollection<TRow>^ Where( EnumerableRowCollection<TRow>^ source, Func<TRow, bool>^ predicate )
Parameters
- source
-
Type:
System.Data::EnumerableRowCollection<TRow>^
An EnumerableRowCollection containing the DataRow elements to filter.
- predicate
-
Type:
System::Func<TRow, Boolean>^
A function to test each element for a condition.
Return Value
Type: System.Data::EnumerableRowCollection<TRow>^An OrderedEnumerableRowCollection<TRow> that contains rows from the input sequence that satisfy the condition.
Type Parameters
- TRow
The type of the row elements in source, typically DataRow.
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
Available since 3.5
M:System.Data.EnumerableRowCollectionExtensions.Select``2(System.Data.EnumerableRowCollection{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})
Where<TSource>
EnumerableRowCollectionExtensions Class
System.Data Namespace