vote up 1 vote down star
2

I want to get the method System.Linq.Queryable.OrderyBy(the IQueryable source, Expression> keySelector) mehthod, but I keep coming up with nulls.

var type = typeof(T);
var propertyInfo = type.GetProperty(group.PropertyName);
var propertyType = propertyInfo.PropertyType;

var sorterType = typeof(Func<,>).MakeGenericType(type, propertyType);
var expressionType = typeof(Expression<>).MakeGenericType(sorterType);

var queryType = typeof(IQueryable<T>);

var orderBy = typeof(System.Linq.Queryable).GetMethod("OrderBy", new[] { queryType, expressionType }); /// is always null.

Does anyone have any insight? I would prefer to not loop through the GetMethods result.

flag

4 Answers

vote up 1 vote down check

Solved (by hacking LINQ)!

I saw your question while researching the same problem. After finding no good solution, I had the idea to look at the LINQ expression tree. Here's what I came up with:

    public static MethodInfo GetOrderByMethod<TElement, TSortKey>()
    {
        Func<TElement, TSortKey> fakeKeySelector = element => default(TSortKey);

        Expression<Func<IEnumerable<TElement>, IOrderedEnumerable<TElement>>> lamda
            = list => list.OrderBy(fakeKeySelector);

        return (lamda.Body as MethodCallExpression).Method;
    }

    static void Main(string[] args)
    {
        List<int> ints = new List<int>() { 9, 10, 3 };
        MethodInfo mi = GetOrderByMethod<int, string>();           
        Func<int,string> keySelector = i => i.ToString();
        IEnumerable<int> sortedList = mi.Invoke(null, new object[] { ints, keySelector }) as IEnumerable<int>;

        foreach (int i in sortedList)
        {
            Console.WriteLine(i);
        }
    }

output: 10 3 9

EDIT: Here is how to get the method if you don't know the type at compile-time:

   public static MethodInfo GetOrderByMethod(Type elementType, Type sortKeyType)
    {
        MethodInfo mi = typeof(Program).GetMethod("GetOrderByMethod", Type.EmptyTypes);

        var getOrderByMethod = mi.MakeGenericMethod(new Type[] { elementType, sortKeyType });
        return getOrderByMethod.Invoke(null, new object[] { }) as MethodInfo;
    }

Be sure to replace typeof(Program) with typeof(WhateverClassYouDeclareTheseMethodsIn).

link|flag
Ooooh, very wise. :) – Dave Dec 17 '08 at 3:42
vote up 0 vote down

I don't believe there's an easy way of doing this - it's basically a missing feature from reflection, IIRC. You have to loop through the methods to find the one you want :(

link|flag
vote up 1 vote down
var orderBy =
		(from methodInfo in typeof(System.Linq.Queryable).GetMethods()
		 where methodInfo.Name == "OrderBy"
		 let parameterInfo = methodInfo.GetParameters()
		 where parameterInfo.Length == 2
		 && parameterInfo[0].ParameterType.GetGenericTypeDefinition() == typeof(IQueryable<>)
		 && parameterInfo[1].ParameterType.GetGenericTypeDefinition() == typeof(Expression<>)
		 select
			methodInfo
		).Single();
link|flag
vote up 2 vote down

A variant of your solution, as an extension method:

public static class TypeExtensions
{
    private static readonly Func<MethodInfo, IEnumerable<Type>> ParameterTypeProjection = 
        method => method.GetParameters()
                        .Select(p => p.ParameterType.GetGenericTypeDefinition());

    public static MethodInfo GetGenericMethod(this Type type, string name, params Type[] parameterTypes)
    {
        return (from method in type.GetMethods()
                where method.Name == name
                where parameterTypes.SequenceEqual(ParameterTypeProjection(method))
                select method).SingleOrDefault();
    }
}
link|flag
Interesting, thanks I will need to absorb this SquenceEqual method. – Dave Nov 7 '08 at 15:33

Your Answer

Get an OpenID
or

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