/// <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(); }
/// <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(); }