【发布时间】:2013-01-25 16:10:12
【问题描述】:
我正在使用 N2CMS,并且我有两个继承自 ContentItem 的类 - 例如 HomePage 和 NewsPage。 NewsPage 设置为仅出现在 HomePage 下(使用 RestrictParents 属性):
[RestrictParents(typeof(HomePage))]
我是否可以在主页下方设置最大数量的新闻页面(在本例中为 1)?
【问题讨论】:
我正在使用 N2CMS,并且我有两个继承自 ContentItem 的类 - 例如 HomePage 和 NewsPage。 NewsPage 设置为仅出现在 HomePage 下(使用 RestrictParents 属性):
[RestrictParents(typeof(HomePage))]
我是否可以在主页下方设置最大数量的新闻页面(在本例中为 1)?
【问题讨论】:
答案是你可以使用
[RestrictCardinality]
属性。在我在问题中给出的示例中,您将使用
[RestrictCardinality(ComparableType=typeof(NewsPart), MaximumCount=1)]
【讨论】: