/// <summary> /// Converts the value of the specified SqlDecimal to its equivalent SqlInt64 representation. /// </summary> /// <param name="value">An SqlDecimal.</param> /// <returns>The equivalent SqlInt64.</returns> public static SqlInt64 ToSqlInt64(SqlDecimal value) { return value.ToSqlInt64(); }
/// <summary>Converts the value from <c>SqlDecimal</c> to an equivalent <c>SqlInt64</c> value.</summary> public static SqlInt64 ToSqlInt64(SqlDecimal p) { return p.ToSqlInt64(); }