ToSqlString() public method

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