从C#中的复杂模型中获取属性值[重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我想获取复杂模型的属性值(对象中的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..
            }
        }

研究(以及其他):Get Values From Complex Class Using Reflection

asp.net-core complextype propertyinfo
1个回答
0
投票

我找到了答案:

C# object to array

我需要首先创建一个IEnumerable,因为父模型创建了一个ChildModel的IList(电影,其中包含moviedetails):

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);
                            }
                        }
                    }
                }
© www.soinside.com 2019 - 2024. All rights reserved.