Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 654 Bytes

searchable-properties.md

File metadata and controls

20 lines (13 loc) · 654 Bytes
description
Configuring searchable properties in Umbraco UI Builder, the backoffice UI builder for Umbraco.

Searchable Properties

Searchable properties allow you to define any String based properties on a model. They will be searchable via Umbraco UI Builder's list view and entity picker search controls.

Search

Defining searchable properties

AddSearchableProperty(Lambda searchablePropertyExpression) : CollectionConfigBuilder<TEntityType>

Adds the given property to the searchable properties collection.

// Example
collectionConfig.AddSearchableProperty(p => p.FirstName);