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

Inheritance: IPreparable, ISerializable
显示文件 Open project: deveel/deveeldb Class Usage Examples

Private Properties

Property Type Description
FromTable System
FromTable System
IPreparable object

Public Methods

Method Description
FromTable ( SqlQueryExpression query ) : System

A table that is a sub-query with no alias set.

FromTable ( SqlQueryExpression query, string tableAlias ) : System

A table that is a sub-query and given an aliased name.

FromTable ( string tableName ) : System

A simple table definition (not aliased).

FromTable ( string tableName, string tableAlias ) : System

Constructs a table that is aliased under a different name.

ISerializable ( SerializationInfo info, StreamingContext context ) : void

Private Methods

Method Description
FromTable ( SerializationInfo info, StreamingContext context ) : System
FromTable ( string tableName, SqlQueryExpression query, string alias ) : System
IPreparable ( IExpressionPreparer preparer ) : object

Method Details

FromTable() public method

A table that is a sub-query with no alias set.
public FromTable ( SqlQueryExpression query ) : System
query SqlQueryExpression
return System

FromTable() public method

A table that is a sub-query and given an aliased name.
public FromTable ( SqlQueryExpression query, string tableAlias ) : System
query SqlQueryExpression
tableAlias string
return System

FromTable() public method

A simple table definition (not aliased).
public FromTable ( string tableName ) : System
tableName string
return System

FromTable() public method

Constructs a table that is aliased under a different name.
public FromTable ( string tableName, string tableAlias ) : System
tableName string
tableAlias string
return System

ISerializable() public method

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