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

공개 메소드들

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