我正在使用N2CMS,我有两个从ContentItem继承的类-比如说HomePage和NewsPage。 NewsPage设置为仅出现在HomePage下(使用RestrictParents属性):
[RestrictParents(typeof(HomePage))]
我可以做到这一点,以便主页下面有最大数量的NewsPages(在本例中为1)吗?
最佳答案
答案是您可以使用
[RestrictCardinality]
属性。在我给问题的示例中,您将使用
[RestrictCardinality(ComparableType=typeof(NewsPart), MaximumCount=1)]
关于n2cms - N2CMS:将某种类型的ContentItem的数量限制在另一个ContentItem之下,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14525673/