我有一个表达式访问者将表达式翻译成url格式。但是它只转换最后调用的表达式。例如,如果我这样调用集合:
NetworkAccountStorage.Where<NetworkAccountModel>(x => x.ID + 1 > 0).Select(x => x.Name).Distinct()
Distinct将是唯一访问的表达式。如何解决这个问题?
protected override Expression VisitMethodCall(MethodCallExpression m)
{
if (m.Method.DeclaringType == typeof(Queryable) && m.Method.Name == "Where")
{
sb.Append("$filter=");
//this.Visit(m.Arguments[0]);
//sb.Append(") AS T WHERE ");
LambdaExpression lambda = (LambdaExpression)StripQuotes(m.Arguments[1]);
this.Visit(lambda.Body);
return m;
}
else if (m.Method.DeclaringType == typeof(Queryable) && m.Method.Name == "Select")
{
sb.Append("$select=");
LambdaExpression lambda = (LambdaExpression)StripQuotes(m.Arguments[1]);
this.Visit(lambda.Body);
return m;
}
throw new NotSupportedException(string.Format("The method '{0}' is not supported", m.Method.Name));
}
您需要通过调用您覆盖的基方法来递归:
base.VisitMethodCall(...);
你需要递归。Distinct接受一个this
参数,该参数是。select调用等