输出表达式值常量类

问题描述

我必须通过 http 将表达式发送到我的后端。此后端知道 enum Fun,但没有对 funs 的引用。

我的工作是以后端仍然可以反序列化它的方式序列化 exp2

有没有办法强制传递枚举值而不是对数组元素的引用?

var funs = new[] { Fun.Low,Fun.High };
Expression<Func<Funky,bool>> exp1 = x => x.Status == Fun.Low;
Expression<Func<Funky,bool>> exp2 = x => x.Status == funs[0];
        
Console.WriteLine(exp1);
//Expected: x => (Convert(x.Status,Int32) == 1)
Console.WriteLine(exp2);
//Actual output: x => (Convert(x.Status,Int32) == Convert(value(Program+<>c__displayClass0_0).funs[0],Int32))
        
        
public enum Fun : int {
    Low = 1,Middle = 2,High = 420
}

public class Funky {
    public Fun Status {get;set;} = Fun.High;
}

问题:如何使 exp2 与 exp1 结果相同?

_____________________________________________

背景信息:

exp1枚举值序列化为 1,它可以被后端正确解释。

exp2funs[0] 序列化为对实际数组元素的引用,如下所示:Convert(value(Program+<>c__displayClass0_0).funs[0],Int32)

我也尝试过 exp3 但这仍然输出值作为参考而不是常量枚举值

到目前为止我尝试过的:

//another tests
var afun = new Funky();
var param = Expression.Parameter(typeof(Funky),"x");
        
var key = afun.GetType().GetProperty("Status");
var lhs = Expression.MakeMemberAccess(param,key);
var rhs = Expression.ArrayIndex(Expression.Constant(funs),Expression.Constant(0));
        
var body = Expression.Equal(lhs,rhs);
var exp3 = Expression.Lambda<Func<Funky,bool>>(body,param);
        
Console.WriteLine(exp3);
//x => (x.Status == value(Fun[])[0])

现实生活中的例子:

后端保存一个将通过 EF-LINQ 查询数据库。 前端应该将确切的 LINQ 查询发送到后端。

假设前端用户一个清单,通过它他可以切换他可以从后端查询哪些 Funky 对象: [x] 低 [x] 中 [_] 高

-> 输出 var funs = new[] { Fun.Low,Fun.Middle }; 现在前端必须像这样将表达式放在一起: Expression<Func<Funky,bool>> exp2 = x => x.Status == funs[0] || x.Status == funs[1];

并在将其发送到后端之前对其进行序列化。 后端将无法理解 funs[0]funs[1]。但后端知道 enum Fun 并且可以正确反序列化 12

解决方法

基本上,您需要重写Expression以删除所有间接并直接使用文字值。这可以通过 ExpressionVisitor 来完成 - 下面显示了一个简化的例子(它处理你的场景) - 但是如果你想处理更复杂的事情,比如方法调用(在本地评估),你需要添加更多 { {1}} 个方法:

override

用法:

    public class SimplifyingVisitor : ExpressionVisitor
    {
        protected override Expression VisitBinary(BinaryExpression node)
        {
            if (node.NodeType == ExpressionType.ArrayIndex)
            {
                if (Visit(node.Left) is ConstantExpression left
                    && left.Value is Array arr && arr.Rank == 1
                    && Visit(node.Right) is ConstantExpression right)
                {
                    var type = left.Type.GetElementType();
                    switch (right.Value)
                    {
                        case int i:
                            return Expression.Constant(arr.GetValue(i),type);
                        case long l:
                            return Expression.Constant(arr.GetValue(l),type);
                    }
                }
            }
            return base.VisitBinary(node);
        }
        protected override Expression VisitUnary(UnaryExpression node)
        {
            if (node.NodeType == ExpressionType.Convert
                 && Visit(node.Operand) is ConstantExpression arg)
            {
                try
                {
                    return Expression.Constant(
                        Convert.ChangeType(arg.Value,node.Type),node.Type);
                }
                catch { } //best efforts
            }
            return base.VisitUnary(node);
        }
        protected override Expression VisitMember(MemberExpression node)
        {
            if (node.NodeType == ExpressionType.MemberAccess && Visit(node.Expression) is ConstantExpression target)
            {
                switch (node.Member)
                {
                    case PropertyInfo property:
                        return Expression.Constant(property.GetValue(target.Value),property.PropertyType);
                    case FieldInfo field:
                        return Expression.Constant(field.GetValue(target.Value),field.FieldType);
                }
            }
            return base.VisitMember(node);
        }
    }