Access properties of dynamic content items

The following articles demonstrates how to access properties of the Model in the dynamic content MVC views.

Each dynamic model is bound to DynamicContentItem that holds the properties of the dynamic content items. You can get or set the related data, fields, or call MVC helper methods that populate the views.

If your dynamic content type has a related data field, you can access it through Model.Item.Fields.<RelatedDataFieldName>

For example, in the sandbox, you can see how the Country detail view is accessing the MainPicture related data field. Refer to the following code sample:

HTML+Razor
@*Start MainPicture field*@
 @if(Model.Item.Fields.MainPicture != null)
 {
   <img src='@Model.Item.Fields.MainPicture.Fields.MediaUrl' alt='@Model.Item.Fields.MainPicture.Fields.AlternativeText' title='@Model.Item.Fields.MainPicture.Fields.Title' />
 }
@*End MainPicture field*@ 

Directly access the properties of the DynamicContentItem

You can get the basic properties of the dynamic content item, such as PublicationDate, Location, Description, using Model.Item.Fields.<PropertyName>

Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.