ToSqlString() public method

public ToSqlString ( ) : SqlString
return SqlString
Beispiel #1
0
 /// <summary>
 /// Converts the value of the specified SqlMoney to its equivalent SqlString representation.
 /// </summary>
 /// <param name="value">An SqlMoney.</param>
 /// <returns>The SqlString equivalent of the SqlMoney.</returns>        
 public static SqlString ToSqlString(SqlMoney value) { return value.ToSqlString(); }
		/// <summary>Converts the value from <c>SqlMoney</c> to an equivalent <c>SqlString</c> value.</summary>
		public static SqlString ToSqlString(SqlMoney        p) { return p.ToSqlString();                                                                  }
Beispiel #3
0
 /// <summary>
 /// Converts the value of the specified SqlMoney to its equivalent SqlChars representation.
 /// </summary>
 /// <param name="value">An SqlMoney.</param>
 /// <returns>The equivalent SqlChars.</returns>
 public static SqlChars ToSqlChars(SqlMoney value) { return (SqlChars)value.ToSqlString(); }
Beispiel #4
0
		/// <summary>Converts the value from <c>SqlMoney</c> to an equivalent <c>SqlChars</c> value.</summary>
		public static SqlChars ToSqlChars(SqlMoney p)        { return (SqlChars)p.ToSqlString(); }