Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Area: Optimizely Search & Navigation
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Introduction

When objects returned in search results etc are deserialized, they are instantiated by the JSON.NET serializer. If some custom action is required when instantiating the objects, the instantiation can be customized using the Client conventions.

Examples

An example of configuring custom instantiation can look like this:

C#
//using EPiServer.Find.ClientConvetions;

client.Conventions.ForType<BlogPost>()
    .CreateUsing(() => new BlogPost("someCtorParamValue"));

Note that if indexed objects are so complex that they require custom instantiation, they are often not suitable as search results and it might be better to project the search results to some other simpler class using the Select method.

Last updated: Sep 26, 2013