How To Disable Updating of Page Types When Using Page Type Builder

I’ve mentioned it before, but as I keep getting questions on the subject I thought I’d dedicate a post to it. It being the question whether it’s possible to tell Page Type Builder not to update page types when the application starts. And the answer is yes :)

Doing so is also one possible solution to another question I’ve gotten a few times: do I have any suggestion on how to handle the problem that properties that one developer have removed is recreated when another developer, that doesn’t have the latest version but who uses the same database, browse the site after compilation.

Disabling updating of page types is done by adding a new configuration section called pageTypeBuilder to web.config and setting it’s disablePageTypeUpdation attribute to true, like this:

<configuration>
  <configSections>
    <section name="pageTypeBuilder"
type="PageTypeBuilder.Configuration.PageTypeBuilderConfiguration,
PageTypeBuilder"/>
  </configSections>
    <pageTypeBuilder disablePageTypeUpdation="true" />
</configuration>

PS. For updates about new posts, sites I find useful and the occasional rant you can follow me on Twitter. You are also most welcome to subscribe to the RSS-feed.

Comments

  1. Marius's avatar

    Marius 1 years ago

    How does this work for the opposite: when you remove a property from your pagetype code, it remains as a property in EpiServer - is there a way to automagically remove the page property on build?

  2. Joel Abrahamsson's avatar

    Joel Abrahamsson 1 years ago

    Hey Marius!

    I'm afraid there isn't. For an explanation of why please see my comment here: http://pagetypebuilder.codeplex.com/WorkItem/View.aspx?WorkItemId=6070

  3. Marius's avatar

    Marius 1 years ago

    Well, that I can understand. Manual labor it is :)

Follow me on Twitter

  1. @chraas You might want to use it for complex parts of the site and not use it for simple rendering pages. 1 days ago
  2. @chraas In theory more SOLID, but I'm not sure it's worth the price. 1 days ago
  3. @chraas Be warned that you're introducing one big chunk of complexity with EPiMVP :) 1 days ago
follow me

Latest comments

  1. Berra S wrote "Read your post at http://joelabrahamsson.com/entry/using-xfo..." on PageData objects not returned as typed when using Page Type Builder and FindPagesWithCriteria
  2. Linus wrote "1 up for behaviour being as close as expected as possible!" on A common problem with Page Type Builder and UniqueValuePerLanguage set to false
  3. Joel Abrahamsson wrote "Hi Hans, Could it be that you previously didn't have Page..." on Page Type Builder 2.0 released

About this site

This blog is built with EPiServer Community, EPiServer CMS, ASP.NET MVC and a bunch of other great products. The source code is available for download at the projects page, where you also can read more about this site and my other projects.

read more