ToSqlInt32() public method

public ToSqlInt32 ( ) : SqlInt32
return SqlInt32
Esempio n. 1
0
 /// <summary>
 /// Converts the value of the specified SqlDecimal to its equivalent SqlInt32 representation.
 /// </summary>
 /// <param name="value">An SqlDecimal.</param>
 /// <returns>The equivalent SqlInt32.</returns>
 public static SqlInt32 ToSqlInt32(SqlDecimal value) { return value.ToSqlInt32(); }
Esempio n. 2
0
		/// <summary>Converts the value from <c>SqlDecimal</c> to an equivalent <c>SqlInt32</c> value.</summary>
		public static SqlInt32 ToSqlInt32(SqlDecimal p) { return p.ToSqlInt32();                                                                    }