C# 클래스 Hd.QueryExtensions.SqlConstant

파일 보기 프로젝트 열기: TargetProcess/Tp.HelpDesk 1 사용 예제들

공개 메소드들

메소드 설명
Date ( System.DateTime val ) : SqlConstant

Creates a SqlConstant which represents a date value.

Number ( decimal val ) : SqlConstant

Creates a SqlConstant which represents a numeric value.

Number ( double val ) : SqlConstant

Creates a SqlConstant which represents a numeric value.

Number ( int val ) : SqlConstant

Creates a SqlConstant which represents a numeric value.

SqlConstant ( ) : System
SqlConstant ( SqlDataType type, object val ) : System

Creates a new SqlConstant instance

String ( string val ) : SqlConstant

Creates a SqlConstant which represents a textual value.

메소드 상세

Date() 공개 정적인 메소드

Creates a SqlConstant which represents a date value.
public static Date ( System.DateTime val ) : SqlConstant
val System.DateTime Value of the expression
리턴 SqlConstant

Number() 공개 정적인 메소드

Creates a SqlConstant which represents a numeric value.
public static Number ( decimal val ) : SqlConstant
val decimal Value of the expression
리턴 SqlConstant

Number() 공개 정적인 메소드

Creates a SqlConstant which represents a numeric value.
public static Number ( double val ) : SqlConstant
val double Value of the expression
리턴 SqlConstant

Number() 공개 정적인 메소드

Creates a SqlConstant which represents a numeric value.
public static Number ( int val ) : SqlConstant
val int Value of the expression
리턴 SqlConstant

SqlConstant() 공개 메소드

public SqlConstant ( ) : System
리턴 System

SqlConstant() 공개 메소드

Creates a new SqlConstant instance
public SqlConstant ( SqlDataType type, object val ) : System
type SqlDataType Constant's date type
val object Constant's value
리턴 System

String() 공개 정적인 메소드

Creates a SqlConstant which represents a textual value.
public static String ( string val ) : SqlConstant
val string Value of the expression
리턴 SqlConstant