Searchable Properties

Configuring searchable properties in Konstrukt, the back office UI builder for Umbraco.

Searchable properties allow you to define any String based properties on a model that should be searchable via Konstrukt list view and entity picker search controls.

Defining searchable properties

AddSearchableProperty(Lambda searchablePropertyExpression) : KonstruktCollectionConfigBuilder<TEntityType>

Adds the given property to the searchable properties collection.

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

Last updated