Per Nergård
Jan 24, 2014
  2050
(1 votes)

Search and property with backing type

I guess that everybody is familiar with the custom property for editing the metakeyword property in the Alloy templates.

I assume that there are at least a few EPiServer 7 sites out there that uses it, and also doesn’t use Find or any other soution for handling search.

We discovered that if using that custom property which is nice for the editors, have the drawback that the keywords entered isn’t searchable (I guess it doesn’t get indexed) even if you decorate the property with the [Searchable] attribute.

Luckily it’s an easy fix. Just override the ToString method in the backing type like below and the keywords will be searchable.


public override string ToString()
{
    if (Value != null)
        return string.Join(",", List);
    else
        return string.Empty;
}

Jan 24, 2014

Comments

Santosh Achanta
Santosh Achanta Feb 17, 2014 02:01 AM

Good one, thanks Per!

Santosh Achanta
Santosh Achanta Feb 18, 2014 12:01 AM

Good to have a null check before joining otherwise, when you try to publish a page that has meta keywords empty, will throw null reference exception.

Feb 18, 2014 08:40 AM

@Santosh: I thought I hade published the code with the null check that I added. Blog post updated.

Gayathri Saravanan
Gayathri Saravanan Mar 18, 2014 04:00 PM

Good idea...

Please login to comment.
Latest blogs
Optimizely Forms: You cannot submit this form because an administrator has turned off data storage.

Do not let this error message scare you, the solution is quite simple!

Tomas Hensrud Gulla | Oct 4, 2024 | Syndicated blog

Add your own tools to the Optimizely CMS 12 admin menu

The menus in Optimizely CMS can be extended using a MenuProvider, and using the path parameter you decide what menu you want to add additional menu...

Tomas Hensrud Gulla | Oct 3, 2024 | Syndicated blog

Integrating Optimizely DAM with Your Website

This article is the second in a series about integrating Optimizely DAM with websites. It discusses how to install the necessary package and code t...

Andrew Markham | Sep 28, 2024 | Syndicated blog

Opticon 2024 - highlights

I went to Opticon in Stockholm and here are my brief highlights based on the demos, presentations and roadmaps  Optimizely CMS SaaS will start to...

Daniel Ovaska | Sep 27, 2024