You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
5.1 KiB
132 lines
5.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace NFine.Code
|
|
{
|
|
public static partial class ExtLinq
|
|
{
|
|
public static Expression Property(this Expression expression, string propertyName)
|
|
{
|
|
return Expression.Property(expression, propertyName);
|
|
}
|
|
/// <summary>
|
|
/// 先满足第一个,再满足第二个
|
|
/// </summary>
|
|
/// <param name="left"></param>
|
|
/// <param name="right"></param>
|
|
/// <returns></returns>
|
|
public static Expression AndAlso(this Expression left, Expression right)
|
|
{
|
|
return Expression.AndAlso(left, right);
|
|
}
|
|
/// <summary>
|
|
/// 调用参数
|
|
/// </summary>
|
|
/// <param name="instance"></param>
|
|
/// <param name="methodName"></param>
|
|
/// <param name="arguments"></param>
|
|
/// <returns></returns>
|
|
public static Expression Call(this Expression instance, string methodName, params Expression[] arguments)
|
|
{
|
|
return Expression.Call(instance, instance.Type.GetMethod(methodName), arguments);
|
|
}
|
|
/// <summary>
|
|
/// 大于
|
|
/// </summary>
|
|
/// <param name="left"></param>
|
|
/// <param name="right"></param>
|
|
/// <returns></returns>
|
|
public static Expression GreaterThan(this Expression left, Expression right)
|
|
{
|
|
return Expression.GreaterThan(left, right);
|
|
}
|
|
/// <summary>
|
|
/// 大于等于
|
|
/// </summary>
|
|
/// <param name="left"></param>
|
|
/// <param name="right"></param>
|
|
/// <returns></returns>
|
|
public static Expression GreaterThanOrEqual(this Expression left, Expression right)
|
|
{
|
|
return Expression.GreaterThanOrEqual(left, right);
|
|
}
|
|
/// <summary>
|
|
/// 小于
|
|
/// </summary>
|
|
/// <param name="left"></param>
|
|
/// <param name="right"></param>
|
|
/// <returns></returns>
|
|
public static Expression LessThan(this Expression left, Expression right)
|
|
{
|
|
return Expression.LessThan(left, right);
|
|
}
|
|
/// <summary>
|
|
/// 小于等于
|
|
/// </summary>
|
|
/// <param name="left"></param>
|
|
/// <param name="right"></param>
|
|
/// <returns></returns>
|
|
public static Expression LessThanOrEqual(this Expression left, Expression right)
|
|
{
|
|
return Expression.LessThanOrEqual(left, right);
|
|
}
|
|
public static Expression<T> ToLambda<T>(this Expression body, params ParameterExpression[] parameters)
|
|
{
|
|
return Expression.Lambda<T>(body, parameters);
|
|
}
|
|
public static Expression<Func<T, bool>> True<T>() { return param => true; }
|
|
public static Expression<Func<T, bool>> False<T>() { return param => false; }
|
|
public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
|
|
{
|
|
return first.Compose(second, Expression.AndAlso);
|
|
}
|
|
|
|
public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
|
|
{
|
|
return first.Compose(second, Expression.OrElse);
|
|
}
|
|
public static Expression<T> Compose<T>(this Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge)
|
|
{
|
|
var map = first.Parameters
|
|
.Select((f, i) => new { f, s = second.Parameters[i] })
|
|
.ToDictionary(p => p.s, p => p.f);
|
|
var secondBody = ParameterRebinder.ReplaceParameters(map, second.Body);
|
|
return Expression.Lambda<T>(merge(first.Body, secondBody), first.Parameters);
|
|
}
|
|
private class ParameterRebinder : ExpressionVisitor
|
|
{
|
|
readonly Dictionary<ParameterExpression, ParameterExpression> map;
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ParameterRebinder"/> class.
|
|
/// </summary>
|
|
/// <param name="map">The map.</param>
|
|
ParameterRebinder(Dictionary<ParameterExpression, ParameterExpression> map)
|
|
{
|
|
this.map = map ?? new Dictionary<ParameterExpression, ParameterExpression>();
|
|
}
|
|
/// <summary>
|
|
/// Replaces the parameters.
|
|
/// </summary>
|
|
/// <param name="map">The map.</param>
|
|
/// <param name="exp">The exp.</param>
|
|
/// <returns>Expression</returns>
|
|
public static Expression ReplaceParameters(Dictionary<ParameterExpression, ParameterExpression> map, Expression exp)
|
|
{
|
|
return new ParameterRebinder(map).Visit(exp);
|
|
}
|
|
protected override Expression VisitParameter(ParameterExpression p)
|
|
{
|
|
ParameterExpression replacement;
|
|
|
|
if (map.TryGetValue(p, out replacement))
|
|
{
|
|
p = replacement;
|
|
}
|
|
return base.VisitParameter(p);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|