ToSqlInt64() public method

public ToSqlInt64 ( ) : SqlInt64
return SqlInt64
Exemplo n.º 1
0
 /// <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(); }
Exemplo n.º 2
0
		/// <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();                                                                    }