Remotion.Linq.SqlBackend.SqlGeneration.SqlGeneratingOuterSelectExpressionVisitor.SetInMemoryProjectionForNamedExpression C# (CSharp) Метод

SetInMemoryProjectionForNamedExpression() приватный Метод

private SetInMemoryProjectionForNamedExpression ( Type typeOfValue, Expression columnID ) : void
typeOfValue System.Type
columnID System.Linq.Expressions.Expression
Результат void
    private void SetInMemoryProjectionForNamedExpression (Type typeOfValue, Expression columnID)
    {
      var newInMemoryProjectionBody = Expression.Call (
          CommandBuilder.InMemoryProjectionRowParameter,
          s_getValueMethod.MakeGenericMethod (typeOfValue),
          columnID);

      CommandBuilder.SetInMemoryProjectionBody (newInMemoryProjectionBody);
    }