繁体   English   中英

在嵌套属性中使用 GetValue() 在反射中抛出 TargetException

[英]TargetException thrown in Reflection using GetValue() in nested properties

我需要获取每个对象的所有属性的名称 其中一些是引用类型,所以如果我得到以下对象:

public class Artist {
    public int Id { get; set; }
    public string Name { get; set; }
}

public class Album {
    public string AlbumId { get; set; }
    public string Name { get; set; }
    public Artist AlbumArtist { get; set; }
}

Album对象获取属性时,我还需要获取嵌套的属性AlbumArtist.IdAlbumArtist.Name的值。

到目前为止,我有以下代码,但在尝试获取嵌套值时会触发System.Reflection.TargetException

var valueNames = new Dictionary<string, string>();
foreach (var property in row.GetType().GetProperties())
{
    if (property.PropertyType.Namespace.Contains("ARS.Box"))
    {
        foreach (var subProperty in property.PropertyType.GetProperties())
        {
            if(subProperty.GetValue(property, null) != null)
                valueNames.Add(subProperty.Name, subProperty.GetValue(property, null).ToString());
        } 
    }
    else
    {
        var value = property.GetValue(row, null);
        valueNames.Add(property.Name, value == null ? "" : value.ToString());
    }
}

所以在If语句中,我只检查属性是否在我的引用类型的命名空间下,如果是,我应该获取所有嵌套的属性值,但这就是引发异常的地方。

这失败了,因为您试图在PropertyInfo实例上获取Artist属性:

if(subProperty.GetValue(property, null) != null)
    valueNames.Add(subProperty.Name, subProperty.GetValue(property, null).ToString());

据我了解,您需要来自嵌套row对象(这是一个Album实例)内的Artist实例的值。

所以你应该改变这个:

if(subProperty.GetValue(property, null) != null)
    valueNames.Add(subProperty.Name, subProperty.GetValue(property, null).ToString());

对此:

var propValue = property.GetValue(row, null);
if(subProperty.GetValue(propValue, null) != null)
    valueNames.Add(subProperty.Name, subProperty.GetValue(propValue, null).ToString());

完整(稍作改动以避免在我们不需要时调用 GetValue)

var valueNames = new Dictionary<string, string>();
foreach (var property in row.GetType().GetProperties())
{
    if (property.PropertyType.Namespace.Contains("ATG.Agilent.Entities"))
    {
        var propValue = property.GetValue(row, null);
        foreach (var subProperty in property.PropertyType.GetProperties())
        {
            if(subProperty.GetValue(propValue, null) != null)
                valueNames.Add(subProperty.Name, subProperty.GetValue(propValue, null).ToString());
        } 
    }
    else
    {
        var value = property.GetValue(row, null);
        valueNames.Add(property.Name, value == null ? "" : value.ToString());
    }
}

此外,您可能会遇到属性名称重复的情况,因此您的IDictionary<,>.Add将失败。 我建议在这里使用更可靠的命名。

例如: property.Name + "." + subProperty.Name property.Name + "." + subProperty.Name

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM