ERROR静态方法需要null实例,非静态方法需要非null实例

时间:2011-10-22 04:43:49

标签: linq c#-4.0 lambda expression-trees static-methods

我正在尝试创建表达式树。我需要从数据表中读取数据并检查其列。要检查的列以及要检查的列数仅在运行时已知。列名作为字符串数组提供给我,每列都有一个要检查的字符串列表。我尝试了样本表达式树,如下面的那样。

我遇到错误。

静态方法需要null实例,非静态方法需要非null实例。 参数名称:实例

inner = Expression.Call(rowexp,mi,colexp);

请帮帮我!!!

IQueryable<DataRow> queryableData = CapacityTable
    .AsEnumerable()
    .AsQueryable()
    .Where(row2 => values.Contains(row2.Field<string>("Head1").ToString()) 
                && values.Contains(row2.Field<string>("Head2").ToString()));

MethodInfo mi = typeof(DataRowExtensions).GetMethod(
     "Field", 
      new Type[] { typeof(DataRow),typeof(string) });

mi = mi.MakeGenericMethod(typeof(string));

ParameterExpression rowexp = Expression.Parameter(typeof(DataRow), "row");
ParameterExpression valuesexp = Expression.Parameter(typeof(List<string>), "values");
ParameterExpression fexp = Expression.Parameter(typeof(List<string>), "types");
Expression inner, outer, predicateBody = null;

foreach (var col in types)
{
    // DataRow row = CapacityTable.Rows[1];

    ParameterExpression colexp = Expression.Parameter(typeof(string), "col");
    //  Expression left = Expression.Call(pe, typeof(string).GetMethod("ToLower", System.Type.EmptyTypes));

    inner = Expression.Call(rowexp,mi, colexp);
    outer = Expression.Call(valuesexp, typeof(List<string>).GetMethod("Contains"), inner);
    predicateBody = Expression.And(predicateBody,outer);
}

MethodCallExpression whereCallExpression = Expression.Call(
    typeof(Queryable),
    "Where",
    new Type[] { queryableData.ElementType },
    queryableData.Expression,
    Expression.Lambda<Func<DataRow,bool>>(predicateBody, new ParameterExpression[] { rowexp }));

1 个答案:

答案 0 :(得分:9)

这意味着您尝试表示的方法调用是静态的,但是您给它一个目标表达式。这就像试图打电话:

Thread t = new Thread(...);
// Invalid!
t.Sleep(1000);

你有点尝试以表达式树的形式这样做,这也是不允许的。

Field上的DataRowExtensions扩展方法似乎发生了这种情况 - 所以扩展方法的“目标”需要表示为第一个参数电话,因为你真的想打电话:

DataRowExtensions.Field<T>(row, col);

所以你想要:

inner = Expression.Call(mi, rowexp, colexp);

这将调用this overload,这是用两个参数调用静态方法的方法。