C# Класс Remotion.Linq.SqlBackend.SqlStatementModel.Resolved.SqlColumnReferenceExpression

Defines a SQL column as a reference to a column of a SqlEntityExpression. The column is represented as [alias].[entityname_name]. This is used to reference columns of entities defined by substatements, e.g., in from x in (from c in Cooks select c).Distinct() select x.FirstName; x.FirstName is a column that references the entity defined by the substatement.
Наследование: SqlColumnExpression
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Accept ( System.Linq.Expressions.ExpressionTreeVisitor visitor ) : Expression
SqlColumnReferenceExpression ( Type type, string tableAlias, string referencedColumnName, bool isPrimaryKey, SqlEntityExpression referencedEntity ) : System
ToString ( ) : string
Update ( Type type, string tableAlias, string columnName, bool isPrimaryKey ) : SqlColumnExpression

Описание методов

Accept() публичный Метод

public Accept ( System.Linq.Expressions.ExpressionTreeVisitor visitor ) : Expression
visitor System.Linq.Expressions.ExpressionTreeVisitor
Результат System.Linq.Expressions.Expression

SqlColumnReferenceExpression() публичный Метод

public SqlColumnReferenceExpression ( Type type, string tableAlias, string referencedColumnName, bool isPrimaryKey, SqlEntityExpression referencedEntity ) : System
type System.Type
tableAlias string
referencedColumnName string
isPrimaryKey bool
referencedEntity SqlEntityExpression
Результат System

ToString() публичный Метод

public ToString ( ) : string
Результат string

Update() публичный Метод

public Update ( Type type, string tableAlias, string columnName, bool isPrimaryKey ) : SqlColumnExpression
type System.Type
tableAlias string
columnName string
isPrimaryKey bool
Результат SqlColumnExpression