C# Class Serenity.Data.SqlQuery.Column

Holds information about a column in SELECT clause.
Exibir arquivo Open project: volkanceylan/Serenity

Public Properties

Property Type Description
ColumnName string
Expression string
IntoField object
IntoRowIndex int

Public Methods

Method Description
Column ( SqlQuery query, string expression, string columnName, object intoField ) : System
Column ( string expression, string columnName, int intoRow, object intoField ) : System

Method Details

Column() public method

public Column ( SqlQuery query, string expression, string columnName, object intoField ) : System
query SqlQuery
expression string
columnName string
intoField object
return System

Column() public method

public Column ( string expression, string columnName, int intoRow, object intoField ) : System
expression string
columnName string
intoRow int
intoField object
return System

Property Details

ColumnName public_oe property

Column name
public string ColumnName
return string

Expression public_oe property

Field or expression
public string Expression
return string

IntoField public_oe property

Used by entity system, to determine which field this column value will be read into
public object IntoField
return object

IntoRowIndex public_oe property

Used by entity system when more than one entity is used as a target
public int IntoRowIndex
return int