Expression.Call with Any方法引发异常

本文关键字:异常 方法 Any Call with Expression | 更新日期: 2023-09-27 18:21:50

我正在使用表达式研究过滤机制,但不知道如何使用Expression.call调用Any方法。下面是一个没有意义的例子,但说明了我的问题:

var person = new List<String>(new[] { "Peter", "John", "Jim" });
var personQuery = person.AsQueryable();
var anyMethod = typeof(Queryable).GetMethods().FirstOrDefault(method => method.Name == "Any" && method.GetParameters().Count() == 2);
Expression<Func<String, bool>> expr = p => p == "Amy";
// person.Any(person => person == "Amy"
var call = Expression.Call(
    anyMethod,
    personQuery.Expression,
    expr
);

Expression.Call抛出ArgumentException:

System.ArgumentException was unhandled
  HResult=-2147024809
  Message=Method Boolean Any[TSource](System.Linq.IQueryable`1[TSource], System.Linq.Expressions.Expression`1[System.Func`2[TSource,System.Boolean]]) is a generic method definition.
  Source=System.Core
  StackTrace:
       w System.Linq.Expressions.Expression.ValidateMethodInfo(MethodInfo method)
       w System.Linq.Expressions.Expression.ValidateMethodAndGetParameters(Expression instance, MethodInfo method)
       w System.Linq.Expressions.Expression.Call(MethodInfo method, Expression arg0, Expression arg1)
       w TestConsoleApplication.Program.Main(String[] args) w d:'Users'user'Documents'Visual Studio 2012'Projects'TestConsoleApplication'TestConsoleApplication'Program.cs:wiersz 26
       w System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       w System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       w Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       w System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       w System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       w System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       w System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       w System.Threading.ThreadHelper.ThreadStart()
  InnerException: 

Expression.Call with Any方法引发异常

anyMethod变量将包含泛型方法定义。I.e Any<TSource>您需要在调用它之前将其转换为Any<String>

您将通过调用提供typeof(String)参数的anyMethod.MakeGenericMethod来完成此操作。所以你的代码变成

var person = new List<String>(new[] { "Peter", "John", "Jim" });
var personQuery = person.AsQueryable();
var anyMethod = typeof(Queryable).GetMethods().FirstOrDefault(method => method.Name == "Any" && method.GetParameters().Count() == 2);
var specificMethod = anyMethod.MakeGenericMethod(typeof(String));//<--Important
Expression<Func<String, bool>> expr = p => p == "Amy";
// person.Any(person => person == "Amy"
var call = Expression.Call(
    specificMethod,
    personQuery.Expression,
    expr
);