コード例 #1
0
        protected void VisitProjectionCall(Expression projectionBodyExp)
        {
            var projectionResult = new ProjectionVisitor(this._tableEntityType).ProjectColumns(projectionBodyExp);

            this.TranslationResult.ProjectionFunc  = projectionResult.ProjectionFunc;
            this.TranslationResult.AttributesToGet = projectionResult.AttributesToGet;
        }
コード例 #2
0
        protected void VisitProjectionCall(Expression projectionBodyExp)
        {
            var projectionResult = new ProjectionVisitor().ProjectColumns(projectionBodyExp);

            this.TranslationResult.ProjectionFunc = projectionResult.ProjectionFunc;
            this.TranslationResult.AttributesToGet = projectionResult.AttributesToGet;
        }