GetValue of a property

本文关键字:property of GetValue | 更新日期: 2023-09-27 18:27:43

我在MSSQL数据库中有一个约有300列的表,我只想提取一行并获取列的所有值。我使用过这段代码,但GetValue(,)方法有问题。这是我的代码:

private PropertyInfo[] GetValuesDB()
{
   ......
   var result = from val in datacTx.TableA
                where val.A == "AA" + "-" + "11" &&
                      val.B == "CC                   
                select val;
   return result.First().GetType().GetProperties();
}
...
public void MethodA()
{
  var res = GetValuesDB();
  foreach (var propertyInfo in res)
  {
    var rez = propertyInfo.GetValue(res,null);
  }
}

我总是得到这种例外:

Object does not match target type.

GetValue of a property

GetValue期望第一个参数的类型是声明属性(或子类型)的类型。

因此,您的result.First()调用返回对对象的引用,并且您希望获得该对象的属性。。。所以这应该是您传递给GetValue的引用。您需要更改代码才能返回引用:

// Ideally, change this to a more appropriate return type...
private object GetValuesDB()
{
   ......
   var result = from val in datacTx.TableA
                where val.A == "AA" + "-" + "11" &&
                      val.B == "CC"
                select val;
   return result.First();
}
...
public void MethodA()
{
  var res = GetValuesDB();
  foreach (var propertyInfo in res.GetType().GetProperties())
  {
    var rez = propertyInfo.GetValue(res, null);
  }
}

因此,GetValuesDB现在返回一个对相关实体的引用,然后获取属性描述符,并向每个描述符询问该对象上属性的值