C# Class Deveel.Data.Sql.Expressions.SelectColumn

Inheritance: IPreparable, ISerializable
Mostrar archivo Open project: deveel/deveeldb Class Usage Examples

Private Properties

Property Type Description
IPreparable object
SelectColumn System

Public Methods

Method Description
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

Private Methods

Method Description
IPreparable ( IExpressionPreparer preparer ) : object
SelectColumn ( SerializationInfo info, StreamingContext context ) : System

Method Details

Glob() public static method

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.*).
return SelectColumn

ISerializable() public method

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
return void

ISqlFormattable() public method

public ISqlFormattable ( SqlStringBuilder builder ) : void
builder SqlStringBuilder
return void

SelectColumn() public method

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.
return System

SelectColumn() public method

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.
return System

ToString() public method

public ToString ( ) : string
return string