C# Класс Hd.QueryExtensions.SqlConstant

Показать файл Открыть проект Примеры использования класса

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

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