Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to implement an expression for a method like here:

var prop = Expression.Property(someItem, "Name"); 
var value = Expression.Constant(someConstant);

var contains = typeof(string).GetMethod("Contains", new[] {typeof(string)});
var expression = Expression.Call(prop, contains, value);

But for my extension method:

public static class StringEx
{
    public static bool Like(this string a, string b)
    {
        return a.ToLower().Contains(b.ToLower());
    }
}

Unfortunately, next code throws an ArgumentNullException for a parameter "method":

var like = typeof(string).GetMethod("Like", new[] {typeof(string)});
comparer = Expression.Call(prop, like, value);

What I'm doing wrong?

share|improve this question

4 Answers

I am not sure, but you can only get an extension method from the static class using reflection. Extension methods are not truly added to the class, therefore can't be retrieved with GetMethod.

share|improve this answer
Thanks, I suppose I need to call GetMethod this way: typeof(StringEx).GetMethod("Like", new[] {typeof(string)}); but how I have to inject my parameters in Expression.Call? – CodeAddicted Dec 1 '11 at 7:27
See @Lonli-Lokli's answer below. – Minustar Dec 1 '11 at 11:43

Use

var like = typeof(StringEx).GetMethod("Like", new[] {typeof(string),typeof(string)});

ie. retrieve it from the extending type, not from the extended type.

share|improve this answer
Thanks a lot, but this throws an argument exception: Need null instance for static method, so I need some magic with BindingFlags.Static, but this is outside from my comprehension( – CodeAddicted Dec 1 '11 at 7:33

Try this

public class Person
{
    public string Name { get; set; }
}
public static class StringEx
{
    public static bool Like(this string a, string b)
    {
        return a.ToLower().Contains(b.ToLower());
    }
}


        Person p = new Person(){Name = "Me"};
        var prop = Expression.Property(Expression.Constant(p), "Name");
        var value = Expression.Constant("me");
        var like = typeof(StringEx).GetMethod("Like", BindingFlags.Static
                    | BindingFlags.Public | BindingFlags.NonPublic);
        var comparer = Expression.Call(null, like, prop, value );

        var vvv = (Func<bool>) Expression.Lambda(comparer).Compile();
        bool isEquals = vvv.Invoke();
share|improve this answer

If you want to get your extension method worked you must do like this:

string str = "some string";
str.Like("second string");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.