DataRowExtensions Class
Defines the extension methods to the DataRow class. This is a static class.
Assembly: System.Data.DataSetExtensions (in System.Data.DataSetExtensions.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Field(Of T)(DataRow, DataColumn) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | Field(Of T)(DataRow, DataColumn, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | Field(Of T)(DataRow, Int32) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | Field(Of T)(DataRow, Int32, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | Field(Of T)(DataRow, String) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | Field(Of T)(DataRow, String, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field(Of T) method also supports nullable types. |
![]() ![]() | SetField(Of T)(DataRow, DataColumn, T) | Sets a new value for the specified column in the DataRow. The SetField(Of T) method also supports nullable types. |
![]() ![]() | SetField(Of T)(DataRow, Int32, T) | Sets a new value for the specified column in the DataRow the method is called on. The SetField(Of T) method also supports nullable types. |
![]() ![]() | SetField(Of T)(DataRow, String, T) | Sets a new value for the specified column in the DataRow. The SetField(Of T) method also supports nullable types. |
The DataSet API has been extended with two new methods of the DataRow class, Field and SetField. You can use these to form Language-Integrated Query (LINQ) expressions and method queries against DataTable objects. They are the recommended methods to use for accessing column values within Language-Integrated Query (LINQ) expressions and method queries. For more information, see Generic Field and SetField Methods (LINQ to DataSet).
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.

