Per Nergård
Jan 24, 2014
  2010
(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
Opti ID overview

Opti ID allows you to log in once and switch between Optimizely products using Okta, Entra ID, or a local account. You can also manage all your use...

K Khan | Jul 26, 2024

Getting Started with Optimizely SaaS using Next.js Starter App - Extend a component - Part 3

This is the final part of our Optimizely SaaS CMS proof-of-concept (POC) blog series. In this post, we'll dive into extending a component within th...

Raghavendra Murthy | Jul 23, 2024 | Syndicated blog

Optimizely Graph – Faceting with Geta Categories

Overview As Optimizely Graph (and Content Cloud SaaS) makes its global debut, it is known that there are going to be some bugs and quirks. One of t...

Eric Markson | Jul 22, 2024 | Syndicated blog

Integration Bynder (DAM) with Optimizely

Bynder is a comprehensive digital asset management (DAM) platform that enables businesses to efficiently manage, store, organize, and share their...

Sanjay Kumar | Jul 22, 2024

Frontend Hosting for SaaS CMS Solutions

Introduction Now that CMS SaaS Core has gone into general availability, it is a good time to start discussing where to host the head. SaaS Core is...

Minesh Shah (Netcel) | Jul 20, 2024

Optimizely London Dev Meetup 11th July 2024

On 11th July 2024 in London Niteco and Netcel along with Optimizely ran the London Developer meetup. There was an great agenda of talks that we put...

Scott Reed | Jul 19, 2024