Property descriptor

All dynamic types that have children have artificial fields added. The name of the added field is equal to the name of the child type. For example, in the hierarchy Country »City » Hotel, all instances of Country type have property Cities. This allows you to get all child cities of a particular country using the following code: country.GetValue(“Cities”)

You can use Eval statements in your widget templates to display list of your child items in the following way: <asp:Repeater runat="server" DataSource='<%# Eval("Cities") %>'>

If the country object is with status Live the returned cities are also Live, otherwise the property descriptor returns master objects. 

You have the ability to retrieve the count of a specified child type using the following code: <%# Eval("Cities.Count") %>

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Web Security for Sitefinity Administrators

The free standalone Web Security lesson teaches administrators how to protect your websites and Sitefinity instance from external threats. Learn to configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?