Edit

Share via


EnumerableRowCollectionExtensions Class

Definition

Contains the extension methods for the data row collection classes.

This API supports the product infrastructure and is not intended to be used directly from your code.

C#
public static class EnumerableRowCollectionExtensions
Inheritance
EnumerableRowCollectionExtensions

Remarks

The EnumerableRowCollectionExtensions class contains static extension methods that define the Cast method and standard query operations for the EnumerableRowCollection<TRow> and OrderedEnumerableRowCollection<TRow> classes.

This class cannot be inherited and cannot be instantiated.

Methods

Cast<TResult>(EnumerableRowCollection)

This API supports the product infrastructure and is not intended to be used directly from your code.

Converts the elements of an EnumerableRowCollection to the specified type.

OrderBy<TRow,TKey>(EnumerableRowCollection<TRow>, Func<TRow,TKey>, IComparer<TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sorts the rows of a EnumerableRowCollection in ascending order according to the specified key and comparer.

OrderBy<TRow,TKey>(EnumerableRowCollection<TRow>, Func<TRow,TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sorts the rows of a EnumerableRowCollection in ascending order according to the specified key.

OrderByDescending<TRow,TKey>(EnumerableRowCollection<TRow>, Func<TRow,TKey>, IComparer<TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sorts the rows of a EnumerableRowCollection in descending order according to the specified key and comparer.

OrderByDescending<TRow,TKey>(EnumerableRowCollection<TRow>, Func<TRow,TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sorts the rows of a EnumerableRowCollection in descending order according to the specified key.

Select<TRow,S>(EnumerableRowCollection<TRow>, Func<TRow,S>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Projects each element of an EnumerableRowCollection<TRow> into a new form.

ThenBy<TRow,TKey>(OrderedEnumerableRowCollection<TRow>, Func<TRow,TKey>, IComparer<TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Performs a secondary ordering of the rows of a EnumerableRowCollection in ascending order according to the specified key and comparer.

ThenBy<TRow,TKey>(OrderedEnumerableRowCollection<TRow>, Func<TRow,TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Performs a secondary ordering of the rows of a EnumerableRowCollection in ascending order according to the specified key.

ThenByDescending<TRow,TKey>(OrderedEnumerableRowCollection<TRow>, Func<TRow,TKey>, IComparer<TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Performs a secondary ordering of the rows of a EnumerableRowCollection in descending order according to the specified key and comparer.

ThenByDescending<TRow,TKey>(OrderedEnumerableRowCollection<TRow>, Func<TRow,TKey>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Performs a secondary ordering of the rows of a EnumerableRowCollection in descending order according to the specified key.

Where<TRow>(EnumerableRowCollection<TRow>, Func<TRow,Boolean>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Filters a sequence of rows based on the specified predicate.

Applies to

Product Versions
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1

See also