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

SqlEntityExpression represents an entity in a SQL expression. It consists of a list of columns, a primary key (which is usually part of the columns list), and a table alias identifying the table or substatement the entity stems from. An entity can have a name, which is used to prefix all of its columns with in the generated SQL.
Наследование: Remotion.Linq.Clauses.Expressions.ExtensionExpression
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Accept ( System.Linq.Expressions.ExpressionTreeVisitor visitor ) : Expression
CreateReference ( string newTableAlias, Type newType ) : SqlEntityExpression
GetColumn ( Type type, string columnName, bool isPrimaryKeyColumn ) : SqlColumnExpression
GetIdentityExpression ( ) : Expression
Update ( Type itemType, string tableAlias, string entityName ) : SqlEntityExpression

Защищенные методы

Метод Описание
SqlEntityExpression ( Type entityType, string tableAlias, string entityName, Expression>.Func identityExpressionGenerator ) : System

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

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

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

CreateReference() публичный абстрактный Метод

public abstract CreateReference ( string newTableAlias, Type newType ) : SqlEntityExpression
newTableAlias string
newType System.Type
Результат SqlEntityExpression

GetColumn() публичный абстрактный Метод

public abstract GetColumn ( Type type, string columnName, bool isPrimaryKeyColumn ) : SqlColumnExpression
type System.Type
columnName string
isPrimaryKeyColumn bool
Результат SqlColumnExpression

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

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

SqlEntityExpression() защищенный Метод

protected SqlEntityExpression ( Type entityType, string tableAlias, string entityName, Expression>.Func identityExpressionGenerator ) : System
entityType System.Type
tableAlias string
entityName string
identityExpressionGenerator Expression>.Func
Результат System

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

public abstract Update ( Type itemType, string tableAlias, string entityName ) : SqlEntityExpression
itemType Type
tableAlias string
entityName string
Результат SqlEntityExpression