Method | Description | |
---|---|---|
Date ( System.DateTime val ) : |
Creates a SqlConstant which represents a date value.
|
|
Number ( decimal val ) : |
Creates a SqlConstant which represents a numeric value.
|
|
Number ( double val ) : |
Creates a SqlConstant which represents a numeric value.
|
|
Number ( int val ) : |
Creates a SqlConstant which represents a numeric value.
|
|
SqlConstant ( ) : System | ||
SqlConstant ( SqlDataType type, object val ) : System |
Creates a new SqlConstant instance
|
|
String ( string val ) : |
Creates a SqlConstant which represents a textual value.
|
public static Date ( System.DateTime val ) : |
||
val | System.DateTime | Value of the expression |
return |
public static Number ( decimal val ) : |
||
val | decimal | Value of the expression |
return |
public static Number ( double val ) : |
||
val | double | Value of the expression |
return |
public static Number ( int val ) : |
||
val | int | Value of the expression |
return |
public SqlConstant ( SqlDataType type, object val ) : System | ||
type | SqlDataType | Constant's date type |
val | object | Constant's value |
return | System |
public static String ( string val ) : |
||
val | string | Value of the expression |
return |