我需要获取每个对象的所有属性的 Name 和 Value 。其中一些是引用类型,所以如果我得到以下对象:
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.Id
和AlbumArtist.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
语句中,我只检查属性是否在我的引用类型的命名空间下,如果是,我应该获取所有嵌套属性值,但这是引发异常的地方。
提前感谢您的帮助..
答案 0 :(得分:3)
此操作失败,因为您尝试在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