C# 클래스 Deveel.Data.Sql.Expressions.SqlCastExpression

An SqlExpression that will cast a value retrieved by the evaluation of another expression into a given SQL data type.
상속: SqlExpression
파일 보기 프로젝트 열기: deveel/deveeldb 1 사용 예제들

공개 메소드들

메소드 설명
SqlCastExpression ( SqlExpression value, SqlType sqlType ) : System

Constructs the expression with the a given value to be converted and the conversion type.

보호된 메소드들

메소드 설명
GetData ( SerializationInfo info, StreamingContext context ) : void

비공개 메소드들

메소드 설명
AppendTo ( SqlStringBuilder builder ) : void
SqlCastExpression ( SerializationInfo info, StreamingContext context ) : System

메소드 상세

GetData() 보호된 메소드

protected GetData ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
리턴 void

SqlCastExpression() 공개 메소드

Constructs the expression with the a given value to be converted and the conversion type.
public SqlCastExpression ( SqlExpression value, SqlType sqlType ) : System
value SqlExpression The expression whose value resulted from its /// evaluation will be casted to the given type.
sqlType SqlType The destination type this expression /// will convert to.
리턴 System