C# 클래스 Shaolinq.Persistence.Linq.Optimizers.SqlFunctionCoalescer

An optimizer that turns nested SQL function calls into a single function call (if possible) function call.
For example: CONCAT(CONCAT(X, Y), Z) => CONCAT(X, Y, Z)
상속: Shaolinq.Persistence.Linq.Expressions.SqlExpressionVisitor
파일 보기 프로젝트 열기: tumtumtum/Shaolinq 1 사용 예제들

공개 메소드들

메소드 설명
Coalesce ( Expression expression ) : Expression

보호된 메소드들

메소드 설명
VisitFunctionCall ( SqlFunctionCallExpression functionCallExpression ) : Expression

비공개 메소드들

메소드 설명
SqlFunctionCoalescer ( ) : System.Collections.Generic

메소드 상세

Coalesce() 공개 정적인 메소드

public static Coalesce ( Expression expression ) : Expression
expression System.Linq.Expressions.Expression
리턴 System.Linq.Expressions.Expression

VisitFunctionCall() 보호된 메소드

protected VisitFunctionCall ( SqlFunctionCallExpression functionCallExpression ) : Expression
functionCallExpression Shaolinq.Persistence.Linq.Expressions.SqlFunctionCallExpression
리턴 System.Linq.Expressions.Expression