0

我有一个看起来像这样的抽象类:

public abstract class PageObjectsBase
{
    public abstract string FriendlyName { get; }
    public abstract string PageObjectKeyPrefix { get; }
    public abstract string CollectionProperty { get; }
}

还有一个派生自 PageObjectsBase 的类:

public class PageRatingList : PageObjectsBase
{
    public IList<PageRating> PageRatings { get; set; }

    public PageRatingList()
    {
        this.PageRatings = new List<PageRating>();
    }

    public override string CollectionProperty
    {
        get
        {
            var collectionProperty = typeof(PageRatingList).GetProperties().FirstOrDefault(p => p.Name == "PageRatings");
            return (collectionProperty != null) ? collectionProperty.Name : string.Empty;  
        }
    }

    public override string FriendlyName
    {
        get
        {
            return "Page feedback/rating";
        }
    }

    public override string PageObjectKeyPrefix
    {
        get
        {
            return "pagerating-";
        }
    }
}

以及 PageRatingList.PageRatings 持有的 PageRating 类:

public class PageRating : PageObjectBase
{
    public int Score { get; set; }
    public string Comment { get; set; }
    public string Name { get; set; }
    public string Email { get; set; }
}

PageRatingList 存储在数据库中(EPiServer 的动态数据存储,更具体地说,使用页面对象管理器)。我需要创建一些报告功能,并且实际上是在加载从 PageObjectBase 派生的所有报告。在返回数据时,代码在编译时永远不会知道要加载什么类型的数据,所以我使用反射。在我的报告课上,我有:

        //this gives me the right type
        var type = Type.GetType("MyNameSpace.PageRatingList", true);

        var startPageData = this._contentRepository.Get<PageData>(startPage);
        PageObjectManager pageObjectManager = new PageObjectManager(startPageData);

        //this loads the instances from the DB
        var props = pageObjectManager.LoadAllMetaObjects()
                         .FirstOrDefault(o => o.StoreName == "Sigma.CitizensAdvice.Web.Business.CustomEntity.PageRatingList");

        //this gives me 4 PropertyInfo objects (IList: PageRatings, string : CollectionProperty, string :FriendlyName, string : PageObjectKeyPrefix)
        var properties = props.Value.GetType().GetProperties();

然后我可以使用以下方法遍历 PropertyInfo 对象:

        foreach (var property in properties)
        {
            //extract property value here
        }

我遇到的问题是我无法弄清楚如何获取每个 propertyinfo 对象的值。此外,其中一个属性是 List 类型,并且在运行时之前我们不会知道 T 的类型。因此,我还需要一些逻辑来检查其中一个 PropertyInfo 对象是否为 List 类型,然后提供对 List 中每个属性的访问 - List 的类型为 PageRating。

有人可以在这里帮忙吗?我过去并没有真正使用过反射,所以我正在努力通过它,无论对错!

非常感谢艾尔

4

1 回答 1

0

我可能误解了这个问题,但我认为你可能会使用这样的东西:

   var props = new PageRatingList(); /*actual instanse of the object, in your case, i think "props.Value" */

   var properties = typeof(PageRatingList).GetProperties();

   foreach (var property in properties)
   {
       if (property.PropertyType == typeof(IList<PageRating>))
       {
           IList<PageRating> list  = (IList<PageRating>)property.GetValue(props);

           /* do */
       }
       else
       {
            object val = property.GetValue(props);
       }
    }

希望这有助于找到您的解决方案。

于 2013-10-23T16:26:51.867 回答