0

我有一个列表 asProductSpec {id, Name}和另一个列表 as Product {productspec, id, Name}。当我尝试访问 Product 的属性时

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

我将我的 id 和 name 作为属性恢复,这很好,但是当我尝试将 productspec 重申为

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..
}

那么如何从列表中重复列表以获取列表属性

4

3 回答 3

3

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

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

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

于 2012-12-28T11:04:58.313 回答
3

的类型是type还是 type 的ProductSpec类?如果它是一个列表,您可以执行以下操作:ProductProductSpecList<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
    }
}
于 2012-12-28T14:40:16.747 回答
0

试试这个:

    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; }
}
于 2012-12-28T11:11:09.137 回答