Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 N2CMS,并且我有两个从 ContentItem 继承的类——比如 HomePage 和 NewsPage。NewsPage 设置为仅出现在 HomePage 下(使用 RestrictParents 属性):
[RestrictParents(typeof(HomePage))]
我可以让它在主页下方有最大数量的新闻页面(在这种情况下为 1)吗?
答案是您可以使用
[RestrictCardinality]
属性。在我在问题中给出的示例中,您将使用
[RestrictCardinality(ComparableType=typeof(NewsPart), MaximumCount=1)]