Esempio n. 1
0
 /// <summary>
 /// This method provides access to the values in each of the columns in a given row.
 /// This method makes casts unnecessary when accessing columns.
 /// Additionally, Field supports nullable types and maps automatically between DBNull and
 /// Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">The input DataRow</param>
 /// <param name="columnName">The input column name specificy which row value to retrieve.</param>
 /// <returns>The DataRow value for the column specified.</returns>
 public static T Field <T>(this DataRow row, string columnName)
 {
     DataSetUtil.CheckArgumentNull(row, nameof(row));
     return(UnboxT <T> .s_unbox(row[columnName]));
 }
Esempio n. 2
0
 /// <summary>
 /// This method provides access to the values in each of the columns in a given row.
 /// This method makes casts unnecessary when accessing columns.
 /// Additionally, Field supports nullable types and maps automatically between DBNull and
 /// Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">The input DataRow</param>
 /// <param name="columnIndex">The input ordinal specificy which row value to retrieve.</param>
 /// <returns>The DataRow value for the column specified.</returns>
 public static T Field <T>(this DataRow row, int columnIndex)
 {
     DataSetUtil.CheckArgumentNull(row, nameof(row));
     return(UnboxT <T> .s_unbox(row[columnIndex]));
 }
Esempio n. 3
0
 /// <summary>
 ///  This method provides access to the values in each of the columns in a given row.
 ///  This method makes casts unnecessary when accessing columns.
 ///  Additionally, Field supports nullable types and maps automatically between DBNull and
 ///  Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">
 ///   The input DataRow
 /// </param>
 /// <param name="columnIndex">
 ///   The input ordinal specificy which row value to retrieve.
 /// </param>
 /// <param name="version">
 ///   The DataRow version for which row value to retrieve.
 /// </param>
 /// <returns>
 ///   The DataRow value for the column specified.
 /// </returns>
 public static T Field <T>(this DataRow row, int columnIndex, DataRowVersion version)
 {
     DataSetUtil.CheckArgumentNull(row, "row");
     return(UnboxT <T> .Unbox(row[columnIndex, version]));
 }
Esempio n. 4
0
 /// <summary>
 /// This method provides access to the values in each of the columns in a given row.
 /// This method makes casts unnecessary when accessing columns.
 /// Additionally, Field supports nullable types and maps automatically between DBNull and
 /// Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">The input DataRow</param>
 /// <param name="column">The input DataColumn specifying which row value to retrieve.</param>
 /// <param name="version">The DataRow version for which row value to retrieve.</param>
 /// <returns>The DataRow value for the column specified.</returns>
 public static T Field <T>(this DataRow row, DataColumn column, DataRowVersion version)
 {
     DataSetUtil.CheckArgumentNull(row, nameof(row));
     return(UnboxT <T> .s_unbox(row[column, version]));
 }
Esempio n. 5
0
 /// <summary>
 /// This method provides access to the values in each of the columns in a given row.
 /// This method makes casts unnecessary when accessing columns.
 /// Additionally, Field supports nullable types and maps automatically between DBNull and
 /// Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">The input DataRow</param>
 /// <param name="columnName">The input column name specificy which row value to retrieve.</param>
 /// <param name="version">The DataRow version for which row value to retrieve.</param>
 /// <returns>The DataRow value for the column specified.</returns>
 public static T Field <T>(this DataRow row, string columnName, DataRowVersion version)
 {
     DataSetUtil.CheckArgumentNull(nameof(row), "row");
     return(UnboxT <T> .s_unbox(row[columnName, version]));
 }
Esempio n. 6
0
 /// <summary>
 ///  This method provides access to the values in each of the columns in a given row.
 ///  This method makes casts unnecessary when accessing columns.
 ///  Additionally, Field supports nullable types and maps automatically between DBNull and
 ///  Nullable when the generic type is nullable.
 /// </summary>
 /// <param name="row">
 ///   The input DataRow
 /// </param>
 /// <param name="column">
 ///   The input DataColumn specificy which row value to retrieve.
 /// </param>
 /// <returns>
 ///   The DataRow value for the column specified.
 /// </returns>
 public static T Field <T>(this DataRow row, DataColumn column)
 {
     DataSetUtil.CheckArgumentNull(row, "row");
     return(UnboxT <T> .Unbox(row[column]));
 }
Esempio n. 7
0
 public static T Field <T>(this DataRow row, string columnName)
 {
     return(UnboxT <T> .Unbox(row[columnName]));
 }
Esempio n. 8
0
 public static T Field <T>(this DataRow row, DataColumn column, DataRowVersion version)
 {
     return(UnboxT <T> .Unbox(row[column, version]));
 }
Esempio n. 9
0
 public static T Field <T>(this DataRow row, string columnName, DataRowVersion version)
 {
     return(UnboxT <T> .Unbox(row[columnName, version]));
 }
Esempio n. 10
0
 public static T Field <T>(this DataRow row, int columnIndex, DataRowVersion version)
 {
     return(UnboxT <T> .Unbox(row[columnIndex, version]));
 }
Esempio n. 11
0
 public static T Field <T>(this DataRow row, int columnIndex)
 {
     return(UnboxT <T> .Unbox(row[columnIndex]));
 }