我想获取复杂模型的属性值(对象中的IList(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..
}
}
研究(除其他外(:使用反射从复杂类中获取值
我在以下位置找到了答案:
C# 对象到数组
我需要先创建一个 IEnumerable,因为父模型会创建一个 ChildModel 的 IList(电影,其中包含电影详细信息(:
if (property.Name.Equals("results"))
{
object movieObject = property.GetValue(movieModel);
IEnumerable movieObjectList = movieObject as IEnumerable;
if (movieObjectList != null)
{
foreach (object movie in movieObjectList)
{
PropertyInfo[] movieDetails = movie.GetType().GetProperties();
foreach (PropertyInfo detail in movieDetails)
{
detail.GetValue(movie, null);
}
}
}
}