2013-03-30 22:56:34 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
|
|
|
|
|
|
namespace Marr.Data.QGen
|
|
|
|
|
{
|
|
|
|
|
public class SortColumn<T>
|
|
|
|
|
{
|
|
|
|
|
public SortColumn(Expression<Func<T, object>> sortExpression, SortDirection direction)
|
2013-05-07 04:32:43 +02:00
|
|
|
|
{
|
|
|
|
|
MemberExpression me = GetMemberExpression(sortExpression.Body);
|
|
|
|
|
DeclaringType = me.Expression.Type;
|
|
|
|
|
PropertyName = me.Member.Name;
|
|
|
|
|
Direction = direction;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-07 09:22:19 +02:00
|
|
|
|
public SortColumn(Type declaringType, string propertyName, SortDirection direction)
|
2013-03-30 22:56:34 +01:00
|
|
|
|
{
|
|
|
|
|
DeclaringType = declaringType;
|
|
|
|
|
PropertyName = propertyName;
|
|
|
|
|
Direction = direction;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-07 09:22:19 +02:00
|
|
|
|
public SortDirection Direction { get; private set; }
|
2013-03-30 22:56:34 +01:00
|
|
|
|
public Type DeclaringType { get; private set; }
|
|
|
|
|
public string PropertyName { get; private set; }
|
|
|
|
|
|
|
|
|
|
private MemberExpression GetMemberExpression(Expression exp)
|
|
|
|
|
{
|
|
|
|
|
MemberExpression me = exp as MemberExpression;
|
|
|
|
|
|
|
|
|
|
if (me == null)
|
|
|
|
|
{
|
|
|
|
|
var ue = exp as UnaryExpression;
|
|
|
|
|
me = ue.Operand as MemberExpression;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return me;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum SortDirection
|
|
|
|
|
{
|
|
|
|
|
Asc,
|
|
|
|
|
Desc
|
|
|
|
|
}
|
|
|
|
|
}
|