3

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

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

4

1 回答 1

5

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

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

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

所以你应该改变这个:

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

于 2012-09-19T14:45:47.123 回答