Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 88087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:30:17+00:00 2026-05-10T22:30:17+00:00

I want to get the method System.Linq.Queryable.OrderyBy<T, TKey>(the IQueryable<T> source, Expression<Func<T,TKey>> keySelector) method, but

  • 0

I want to get the method System.Linq.Queryable.OrderyBy<T, TKey>(the IQueryable<T> source, Expression<Func<T,TKey>> keySelector) method, 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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:30:17+00:00Added an answer on May 10, 2026 at 10:30 pm

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

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want get exeption code from wcf method but i always get NotFound error.
I have a base class with a property which (the get method) I want
What method do you use when you want to get performance data about specific
I want to use the DateTime.TryParse method to get the datetime value of a
I want to get the base 10 logarithm of a Fixnum using Ruby, but
Is it possible to use the FromStream method of System.Drawing.Image without having to keep
I've thought of a few ways of doing this but I want to get
The DataContext.GetTable() method will return an object of type: System.Data.Linq.Table By doing that, I
I run over Items collection and want to build TextBox but I get the
I want to do this: MethodInfo m = myList.GetType().GetMethod(ConvertAll, System.Reflection.BindingFlags.InvokeMethod).MakeGenericMethod(typeof(object)); List<object> myConvertedList = (List<object>)m.Invoke(myList,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.