Understand and Extend
Understanding and Extending ModelsBuilder in Umbraco
Umbraco’s Models Builder automatically generates strongly typed models for content types, allowing developers to work with Umbraco data in a structured and efficient manner. This article explains how models are generated, how composition and inheritance work, and best practices for extending models without causing issues.
Models Generation Process
Models Builder generates each content type as a partial class. For example, a content type named TextPage
results in a TextPage.generated.cs
file with a structure like this:
In the above code:
The model includes a constructor and static helpers to fetch the content type (
PublishedContentType
) and property type (PublishedPropertyType
).The most important part is the property definition (
Header
), which retrieve values from Umbraco.
You can use helper methods to access content and property types:
Composition and Inheritance
Composition
Umbraco content types can be composed of multiple other content types. Unlike traditional C# inheritance, Umbraco allows a content type to inherit properties from multiple sources.
In Umbraco v14, the traditional .NET Inheritance feature has been removed. Instead, properties are inherited through Composition, allowing for greater flexibility in managing content types.
For example, a TextPage
might be composed of:
MetaInfo content type (inherits
Author
andKeywords
properties).PageInfo content type (inherits
Title
andMainImage
properties).
Each content type involved in a composition is generated both as a class and as an interface. The MetaInfo
content type would be generated as:
And the TextPage
model would be generated as:
Inheritance
In addition to composition, content types can have a parent-child relationship. In the Umbraco backoffice, a content type appears underneath its parent.
By convention, a content type is always composed of its parent and therefore inherits its properties. However, the parent content type is treated differently, and the child content type directly inherits (as in C# inheritance) from the parent class.
If AboutPage
is a child of TextPage, its generated model would inherit directly from TextPage
:
Extending Models
Since models are partial classes, developers can extend them by adding additional properties.
For Example:
Models Builder does not recognize custom partial classes during regeneration. If your custom class conflicts with the generated class (e.g., overriding a constructor), it will cause compilation errors.
Overloaded constructors will not be used because models are always instantiated using the default constructor.
For more complex customizations, use the full version of Models Builder.
Custom Model Generation with IModelsGenerator
From Umbraco 11.4, you can implement the IModelsGenerator
interface hto customize how models are generated. This allows you to replace Umbraco’s default implementation using dependency injection:
The interface can be accessed via Infrastructure.ModelsBuilder.Building.ModelsGenerator
.
Best Practices for Extending Models
Extending models should be used to add stateless, local features to models. It should not be used to transform content models into view models or manage trees of content.
Good practices
A customer has "posts" that has two "release date" properties. One is a true date picker property and is used to specify an actual date and to order the posts. The other is a string that is used to specify dates such as "Summer 2015" or "Q1 2016". Alongside the title of the post, the customer wants to display the text date, if present, else the actual date. If none of those are present, the Umbraco update date should be used. Keep in mind that each view can contain code to deal with the situation, but it is much more efficient to extend the Post
model:
Simplified view:
Bad practices
Because, by default, the content object is passed to views, one can be tempted to add view-related properties to the model. Some properties that do not belong to a content model would be:
A
HomePage
property that retrieves the "home page" content item.A
Menu
property that lists navigation items.
Generally speaking, anything that is tied to the current request, or that depends on more than the modeled content, is a bad idea. There are much cleaner solutions, such as using true view model classes that would be populated by a true controller and look like:
One can also extend Umbraco's views to provide a special view helper that gives access to important elements of the website:
Ugly practices
The model's scope and lifecycle are unspecified. It may exist only for your request or be cached and shared across all requests.
The code has a major issue: the TextPage
model caches a HomePageDocument
model that will not update when the home page is re-published.
As a rule of thumb, models should never reference and cache other models.
Last updated