Data Views
Configuring data views in Umbraco UI Builder, the backoffice UI builder for Umbraco.
Last updated
Was this helpful?
Configuring data views in Umbraco UI Builder, the backoffice UI builder for Umbraco.
Data views allow you to define multiple, pre-filtered views of the same data source. This can be useful when entities exist in different states and you want a way to toggle between them.

Data views are defined via the collections configuration.
Adds a data view with the given name and where clause filter expression. Expression must be a boolean expression.
Adds a data view with the given group, name and where clause filter expression. Expression must be a boolean expression.
Last updated
Was this helpful?
Was this helpful?
// Example
collectionConfig.AddDataView("Active", p => p.IsActive);// Example
collectionConfig.AddDataView("Status", "Active", p => p.IsActive);