Default property type mappings in Page Type Builder

If you don't specify what type of EPiServer property a code property should map to using the Type property on the PageTypeProperty attribute Page Type Builder will try to figure it out for you. The default mappings are as follows:

Code property type Default Page Type Property Type
string PropertyXhtmlString
int PropertyNumber
int? PropertyNumber
bool PropertyBoolean
bool? PropertyBoolean
DateTime PropertyDate
DateTime? PropertyDate
float PropertyFloatNumber
float? PropertyFloatNumber
PageReference PropertyPageReference
PageType PropertyPageType

 

That is, if you create a couple of properties with code such as this:

[PageTypeProperty]
public virtual string MainBody { get; set; }

[PageTypeProperty]
public virtual PageReference LinkTo { get; set; }

[PageTypeProperty]
public virtual bool IncludeInRssFeed { get; set; }

It’s equivalent to writing the code this way:

[PageTypeProperty(Type= typeof(PropertyXhtmlString))]
public virtual string MainBody { get; set; }

[PageTypeProperty(Type = typeof(PropertyPageReference))]
public virtual PageReference LinkTo { get; set; }

[PageTypeProperty(Type = typeof(PropertyBoolean))]
public virtual bool IncludeInRssFeed { get; set; }

If you on the other hand where to create a property of a type that isn’t included in the default mapped types in the table above and you don’t specify the Type property of the attribute, such as this:

[PageTypeProperty]
public virtual Uri LinkUri { get; set; }
You’ll get an error message like the one below at runtime.

ErrorMessage

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. Alan Allard's avatar

    Alan Allard 1 years ago

    And what about if you don't rely on defaults and define the type as, say, "PropertyMultipleValue" and still get the same error message? Are multiple value lists not handled at present?

  2. Alan Allard's avatar

    Alan Allard 1 years ago

    What happens is that you define PropertyAppSettingsMultiple instead :) Sorry for the noise...feel free to delete ;)

  3. Tomas Larsson's avatar

    Tomas Larsson 1 years ago

    How do i get rid of the html editor for strings? I just want a text input field!

  4. Emil Lundin's avatar

    Emil Lundin 1 years ago

    Tomas, just add a string property and decorate it with [PageTypeProperty(Type = typeof(PropertyString))]

Follow me on Twitter

  1. @tim_abell The gigantic ones are for customers who specifically ask for them only :) 1 months ago
  2. Looking to buy a gigantic easter egg filled with candy for delivery in Stockholm. Any recommendations? 1 months ago
  3. @strandberg_m Du måste skriva om resultatet efteråt! 1 months ago
follow me

Latest comments

  1. Joel Abrahamsson wrote "Hi Jonas! The fluent API is really geared towards working..." on Building a search page for an EPiServer site using Truffler
  2. Jonas wrote "Thank you for one more great write up! If you're not lucky ..." on Building a search page for an EPiServer site using Truffler
  3. David Knipe wrote "The CategoriesFacet method will save me a load of headaches ..." on Cool new features in the Truffler .NET API

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