5

我有一个带有这样签名的方法

void RefreshMethod<T>(IEnumerable<T> lst, string propertyName) where T:class
{
   Type type = typeof(T);
   PropertyInfo property = type.GetProperties().Single(u => u.Name == primaryKeyProperty);
  //query goes here
}

现在我想查询该集合以获取其所有值

属性名称 < 0

在一个简单的场景中,它会像这样简单

lst.where(u=>u.ID<0)

但这里我没有那个 ID 属性,但有相应的“PropertyInfo”对象。

我应该如何实现这一点。

好心指导

4

1 回答 1

9

您可以使用 查找属性值property.GetValue(anObjectOfTypeT, null)

所以像:

var refreshedList =  lst.Where(l => ((int)(property.GetValue(l, null)) < 0).ToList();

这假设该属性将始终为 int 类型。

于 2012-07-11T11:25:23.563 回答