EPiServer vs EPiServer with page type building
When creating properties and page types through administrator mode in EPiServer, it is quite easy to understand how the database is written to update the website configuration. But with a page type creator, however, if it's as easy as writing ...
[PageTypeProperty]
public virtual string MainBody { get; set; }
... to create a new property - at what point is this stored in the database? Duration? Compilation time?
+3
SkonJeet
source
to share
2 answers
Page Type Builder will create properties at runtime.
+3
pappabj0rn
source
to share
Every time the application starts pagetypebuilder checks for new properties / page types and adds them to the database.
+3
Erik nordin wahlberg
source
to share