标签: c# episerver
有一个抽象的基页
public abstract class BasePage : PageData
有一些页面是从这个页面继承的
public class ChildPage : BasePage public class ChildPage2 : BasePage
我需要检索从BasePage继承的所有页面。 在 PropertyCriteria 中,我只能通过 PageTypeID 使用ChildPage和ChildPage2进行搜索。所以这种方法不能解决我的问题