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

상속: IPreparable, ISerializable
파일 보기 프로젝트 열기: deveel/deveeldb 1 사용 예제들

Private Properties

프로퍼티 타입 설명
IPreparable object
SelectColumn System

공개 메소드들

메소드 설명
Glob ( string glob ) : SelectColumn

Creates a special SelectColumn that is used to select all the columns in a table.

ISerializable ( SerializationInfo info, StreamingContext context ) : void
ISqlFormattable ( SqlStringBuilder builder ) : void
SelectColumn ( SqlExpression expression ) : System

Constructs a new SelectColumn for the given expression.

SelectColumn ( SqlExpression expression, string alias ) : System

Constructs a new SelectColumn for the given expression and aliased with the given name.

ToString ( ) : string

비공개 메소드들

메소드 설명
IPreparable ( IExpressionPreparer preparer ) : object
SelectColumn ( SerializationInfo info, StreamingContext context ) : System

메소드 상세

Glob() 공개 정적인 메소드

Creates a special SelectColumn that is used to select all the columns in a table.
public static Glob ( string glob ) : SelectColumn
glob string The glob name for the column, which can be /// a simple asterisk (*) or prefixed by a table name (eg. Table.*).
리턴 SelectColumn

ISerializable() 공개 메소드

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
리턴 void

ISqlFormattable() 공개 메소드

public ISqlFormattable ( SqlStringBuilder builder ) : void
builder SqlStringBuilder
리턴 void

SelectColumn() 공개 메소드

Constructs a new SelectColumn for the given expression.
public SelectColumn ( SqlExpression expression ) : System
expression SqlExpression The used for select /// a column within a SELECT statement.
리턴 System

SelectColumn() 공개 메소드

Constructs a new SelectColumn for the given expression and aliased with the given name.
public SelectColumn ( SqlExpression expression, string alias ) : System
expression SqlExpression The used for select /// a column within a SELECT statement.
alias string The name to alias the resulted expression.
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string