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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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