Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way to call an instance method in Expression Trees?

What is the best way to call an instance method within an Expression Tree? My current solution is something like this for an interface method "object GetRowValue(rowIndex)" of the interface IColumn.

public static Expression CreateGetRowValueExpression(
    IColumn column, 
    ParameterExpression rowIndex)
        {
            MethodInfo methodInfo = column.GetType().GetMethod(
                "GetRowValue",
                BindingFlags.Instance | BindingFlags.Public,
                null,
                CallingConventions.Any,
                new[] { typeof(int) },
                null);
            var instance = Expression.Constant(column);
            return Expression.Call(instance, methodInfo, rowIndex);            
        }

Is there a faster way? Is it possible to create the Expression without having to pass the method name as a string (bad for refactoring)?

like image 510
Rauhotz Avatar asked Dec 27 '08 11:12

Rauhotz


1 Answers

You can do it with a helper method:

MethodCallExpression GetCallExpression<T>(Expression<Func<T>> e)
{
    return e.Body as MethodCallExpression;
}

/* ... */
var getRowValExpr = GetCallExpression(x => x.GetRowValue(0));
like image 54
Mark Cidade Avatar answered Nov 11 '22 17:11

Mark Cidade