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

Inheritance: IPreparable, ISerializable
Afficher le fichier Open project: deveel/deveeldb Class Usage Examples

Private Properties

Свойство Type Description
IPreparable object
SelectColumn System

Méthodes publiques

Méthode 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

Méthode Description
IPreparable ( IExpressionPreparer preparer ) : object
SelectColumn ( SerializationInfo info, StreamingContext context ) : System

Method Details

Glob() public static méthode

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.*).
Résultat SelectColumn

ISerializable() public méthode

public ISerializable ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
Résultat void

ISqlFormattable() public méthode

public ISqlFormattable ( SqlStringBuilder builder ) : void
builder SqlStringBuilder
Résultat void

SelectColumn() public méthode

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.
Résultat System

SelectColumn() public méthode

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.
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string