This documentation is archived and is not being maintained.
DataRowExtensions Class
Visual Studio 2010
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<T>(DataRow, DataColumn) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | Field<T>(DataRow, Int32) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | Field<T>(DataRow, String) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | Field<T>(DataRow, DataColumn, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | Field<T>(DataRow, Int32, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | Field<T>(DataRow, String, DataRowVersion) | Provides strongly-typed access to each of the column values in the specified row. The Field method also supports nullable types. |
![]() ![]() | SetField<T>(DataRow, DataColumn, T) | Sets a new value for the specified column in the DataRow. The SetField method also supports nullable types. |
![]() ![]() | SetField<T>(DataRow, Int32, T) | Sets a new value for the specified column in the DataRow the method is called on. The SetField method also supports nullable types. |
![]() ![]() | SetField<T>(DataRow, String, T) | Sets a new value for the specified column in the DataRow. The SetField 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).
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
