This documentation is archived and is not being maintained.
TypedTableBaseExtensions Class
.NET Framework (current version)
Namespace:
System.DataAssembly:
System.Data.DataSetExtensions (in System.Data.DataSetExtensions.dll)
<ExtensionAttribute>
Public NotInheritable Class TypedTableBaseExtensions
| Name | Description |
|---|
  | AsEnumerable(Of TRow)(TypedTableBase(Of TRow)) | |
  | ElementAtOrDefault(Of TRow)(TypedTableBase(Of TRow), Int32) | Returns the element at a specified row in a sequence or a default value if the row is out of range. |
  | OrderBy(Of TRow, TKey)(TypedTableBase(Of TRow), Func(Of TRow, TKey)) | |
  | OrderBy(Of TRow, TKey)(TypedTableBase(Of TRow), Func(Of TRow, TKey), IComparer(Of TKey)) | Sorts the rows of a TypedTableBase(Of T) in ascending order according to the specified key and comparer. |
  | OrderByDescending(Of TRow, TKey)(TypedTableBase(Of TRow), Func(Of TRow, TKey)) | |
  | OrderByDescending(Of TRow, TKey)(TypedTableBase(Of TRow), Func(Of TRow, TKey), IComparer(Of TKey)) | Sorts the rows of a TypedTableBase(Of T) in descending order according to the specified key and comparer. |
  | Select(Of TRow, S)(TypedTableBase(Of TRow), Func(Of TRow, S)) | |
  | Where(Of TRow)(TypedTableBase(Of TRow), Func(Of TRow, Boolean)) | Filters a sequence of rows based on the specified predicate. |
The class contains static extension methods that define the AsEnumerable(Of TRow) method and standard query operations for typed data sets.
This class cannot be instantiated.
.NET Framework
Available since 3.5
Any public static (
Shared
in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Return to top