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から継承する2つのクラス(HomePageとNewsPageなど)があります。NewsPageは、(RestrictParents属性を使用して)ホームページの下にのみ表示されるように設定されています。
[RestrictParents(typeof(HomePage))]
ホームページの下に最大数のNewsPages(この場合は1)が表示されるようにすることはできますか?
答えはあなたが使うことができるということです
[RestrictCardinality]
属性。私が質問で与えた例では、あなたは
[RestrictCardinality(ComparableType=typeof(NewsPart), MaximumCount=1)]