November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Aug 24, 2022
Nov 22, 2022
CMS Core
Closed, Acceptance tests pass
Built-in support for list properties on content models was limited to primitive types such as string, number and ContentReference. List properties are now supported as individual properties (like int, string, XhtmlString etc) including Block types. You can now define properties on content models like:
public virtual IList<string> MyStrings {get; set;} public virtual IList<TeaserBlock> MyTeasers {get; set;}
where TeaserBlock in example above is a defined block in CMS, like:
[ContentType] public class TeaserBlock : BlockData {...}