Created
October 16, 2012 14:51
-
-
Save JulienSansot/3899759 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
namespace ConsoleApplication3 | |
{ | |
public class Program | |
{ | |
private static IList<Company> _companies; | |
static void Main(string[] args) | |
{ | |
var sort = "Employees.Count"; | |
_companies = new List<Company>(); | |
_companies.Add(new Company | |
{ | |
Name = "c2", | |
Address = new Address {PostalCode = "456"}, | |
Employees = new List<Employee> {new Employee(), new Employee()} | |
}); | |
_companies.Add(new Company | |
{ | |
Name = "c1", | |
Address = new Address {PostalCode = "123"}, | |
Employees = new List<Employee> {new Employee()} | |
}); | |
//display companies | |
_companies.AsQueryable().OrderBy(sort).ToList().ForEach(c => Console.WriteLine(c.Name)); | |
Console.ReadLine(); | |
} | |
} | |
public class Company | |
{ | |
public string Name { get; set; } | |
public Address Address { get; set; } | |
public IList<Employee> Employees { get; set; } | |
} | |
public class Employee{} | |
public class Address | |
{ | |
public string PostalCode { get; set; } | |
} | |
public static class OrderByString | |
{ | |
public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string property) | |
{ | |
return ApplyOrder<T>(source, property, "OrderBy"); | |
} | |
static IOrderedQueryable<T> ApplyOrder<T>(IQueryable<T> source, string property, string methodName) | |
{ | |
string[] props = property.Split('.'); | |
Type type = typeof(T); | |
ParameterExpression arg = Expression.Parameter(type, "x"); | |
Expression expr = arg; | |
foreach (string prop in props) | |
{ | |
// use reflection (not ComponentModel) to mirror LINQ | |
PropertyInfo pi = type.GetProperty(prop); | |
expr = Expression.Property(expr, pi); | |
type = pi.PropertyType; | |
} | |
Type delegateType = typeof(Func<,>).MakeGenericType(typeof(T), type); | |
LambdaExpression lambda = Expression.Lambda(delegateType, expr, arg); | |
object result = typeof(Queryable).GetMethods().Single( | |
method => method.Name == methodName | |
&& method.IsGenericMethodDefinition | |
&& method.GetGenericArguments().Length == 2 | |
&& method.GetParameters().Length == 2) | |
.MakeGenericMethod(typeof(T), type) | |
.Invoke(null, new object[] { source, lambda }); | |
return (IOrderedQueryable<T>)result; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment