Я хотел знать, как я могу получить значение свойства в C #, но это свойство другого типа.
public class Customer
{
public string Name {get; set;}
public string Lastname {get; set;}
public CustomerAddress Address {get; set;}
}
Таким образом, я могу получить значения свойств Name и LastName, но я совершенно не понимаю, как получить значение CustomerAddress.City.
Это то, что у меня есть до сих пор.
public object GetPropertyValue(object obj, string property)
{
if (string.IsNullOrEmpty(property))
return new object { };
PropertyInfo propertyInfo = obj.GetType().GetProperty(property);
return propertyInfo.GetValue(obj, null);
}
Затем используйте этот метод в операторе LINQ.
var cells = (from m in model
select new
{
i = GetPropertyValue(m, key),
cell = from c in columns
select reflection.GetPropertyValue(m, c)
}).ToArray();
Таким образом, я не получаю значение для CustomerAddress.
Любая помощь будет высоко оценена.
**** ОБНОВЛЕНИЕ ****
Вот как мне удалось это сделать.
public object GetNestedPropertyValue(object obj, string property)
{
if (string.IsNullOrEmpty(property))
return string.Empty;
var propertyNames = property.Split('.');
foreach (var p in propertyNames)
{
if (obj == null)
return string.Empty;
Type type = obj.GetType();
PropertyInfo info = type.GetProperty(p);
if (info == null)
return string.Empty;
obj = info.GetValue(obj, null);
}
return obj;
}