C# Class Remotion.Linq.SqlBackend.SqlStatementModel.Resolved.SqlColumnDefinitionExpression

Defines a SQL column as an item with a given name coming from a given table alias. The column is represented as [alias].[name].
Inheritance: SqlColumnExpression
ファイルを表示 Open project: re-motion/Relinq-SqlBackend Class Usage Examples

Public Methods

Method Description
Accept ( System.Linq.Expressions.ExpressionTreeVisitor visitor ) : Expression
SqlColumnDefinitionExpression ( Type type, string owningTableAlias, string columnName, bool isPrimaryKey ) : System
ToString ( ) : string
Update ( Type type, string owningTableAlias, string columnName, bool isPrimaryKey ) : SqlColumnExpression

Method Details

Accept() public method

public Accept ( System.Linq.Expressions.ExpressionTreeVisitor visitor ) : Expression
visitor System.Linq.Expressions.ExpressionTreeVisitor
return System.Linq.Expressions.Expression

SqlColumnDefinitionExpression() public method

public SqlColumnDefinitionExpression ( Type type, string owningTableAlias, string columnName, bool isPrimaryKey ) : System
type System.Type
owningTableAlias string
columnName string
isPrimaryKey bool
return System

ToString() public method

public ToString ( ) : string
return string

Update() public method

public Update ( Type type, string owningTableAlias, string columnName, bool isPrimaryKey ) : SqlColumnExpression
type System.Type
owningTableAlias string
columnName string
isPrimaryKey bool
return SqlColumnExpression