【发布时间】:2019-04-07 14:25:47
【问题描述】:
我想获取复杂模型的属性值(IList(Object) in object))。我找到了父对象的主要属性以及我需要的子对象的类型。但我无法提取它的值。
我认为问题是由于 GetValue 方法中的 obect 参数。它必须是“TheMovieDatabaseModelDetails”对象。我在这里尝试了很多不同的选项,但得到错误:“对象与目标类型不匹配”。
型号:
public class TheMovieDatabaseModel
{
public int page { get; set; }
public int total_results { get; set; }
public int total_pages { get; set; }
public IList<TheMovieDatabaseModelDetails> results { get; set; }
}
代码:
private async Task GetMovieDetailsForTheMovieDatabase<T>(T movieModel)
{
PropertyInfo[] propertyInfo = movieModel.GetType().GetProperties();
foreach (PropertyInfo property in propertyInfo)
{
if (property.Name.Equals("results"))
{
var movieDetails = property.GetType().GetProperties();
foreach (var detail in movieDetails)
{
detail.GetValue(movieDetails, null); // here I need to fill in the right "object".
}
}
// etc..
}
}
【问题讨论】:
标签: asp.net-core complextype propertyinfo