List PropertyInfo获取属性迭代中的列表

本文关键字:列表 迭代 属性 PropertyInfo 获取 List | 更新日期: 2023-09-27 17:49:51

我有一个列表作为ProductSpec {id, Name},另一个列表为Product {productspec, id, Name}。当我尝试将产品属性访问到时

IList<PropertyInfo> properties = typeof(Product).GetProperties().ToList();

我正在将我的id和名称作为一个属性进行翻新,这很好,但当我试图将产品规范重申为时

foreach(var property in properties)
{
    IList<PropertyInfo> properties = property.propertytype.getproperties();
    // I am not getting the productspec columns 
    //instead I am getting (capacity,count ) as my properties..
}

那么,我如何从列表中重申列表以获得列表属性

List PropertyInfo获取属性迭代中的列表

Product类中ProductSpec的类型是ProductSpec类型还是List<ProductSpec>类型?如果是一个列表,您可以执行以下操作:

var properties = new List<PropertyInfo>();
foreach (var property in properties)
{
    if (typeof(IEnumerable).IsAssignableFrom(property.PropertyType)
        && property.PropertyType.IsGenericType
        && property.PropertyType.GetGenericArguments().Length == 1)
    {
        IList<PropertyInfo> innerProperties = property.PropertyType.GetGenericArguments()[0].GetProperties();
        //should contain properties of elements in lists
    }
    else
    {
        IList<PropertyInfo> innerProperties = property.PropertyType.GetProperties();
        //should contain properties of elements not in a list
    }
}

您需要对属性类型使用相同的代码:

var innerProperties = property.PropertyType.GetProperties().ToList();

同时重命名结果-它与foreach循环中的变量冲突。

试试这个:

    PropertyInfo[] propertyInfos = typeof(Product).GetProperties();
        foreach (var propertyInfo in propertyInfos)
        {
            var inner = propertyInfo.PropertyType.GetProperties().ToList();
        }
public class Product
{
    public ProductSpec Spec { get; set; }
    public string Id { get; set; }
    public string Name { get; set; }
}
public class  ProductSpec
{
    public string Id { get; set; }
    public string Name { get; set; }
}