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
파일 보기 프로젝트 열기: re-motion/Relinq-SqlBackend 1 사용 예제들

공개 메소드들

메소드 설명
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