Rauhotz
Rauhotz

Reputation: 8150

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)?

Upvotes: 5

Views: 5963

Answers (1)

Mark Cidade
Mark Cidade

Reputation: 100047

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));

Upvotes: 8

Related Questions