Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

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

Recommended reading 

Compex object types

The REST API and .NET client API support filtering on complex objects of different types to varying degree. Supported complex objects can be divided into these types:

  • Collections of native objects such as IEnumerable<int>.
  • Complex objects that have properties of native objects and/or complex objects, for example an Author class.
  • Collections of complex objects, such as IEnumerable<Author>.

Collection of native objects

The first type is covered by the documentation for each native type. For instance if you want to know how to filter on a property of type IEnumerable<string>, see Strings.

Complex objects with properties of native objects

The second type, complex objects, such as a property of type Author is straight forward, we can filter on its native properties just as if they were apart of the type we are searching for. For instance, to find blog posts authored by Winston Churchill we could use the below code.

Example:

C#
var searchQuery = client.Search<BlogPost>()
    .Filter(x => x.Author.Name.Match("Winston Churchill"));

One might wonder what happens if the Author property is null. Contrary to LINQ no exception will be thrown and the filter will simply not match.

Complex object collections

The final type of complex objects that you can filter on is collections of complex objects, such as IEnumerable<Author>.  The .NET client API comes with a filter method named MatchContained which you can use to filter on properties of native types in objects contained in collections. Imagine that the BlogPost class no longer has an Author property but instead an Authors property of type IEnumerable<Author>. Next, use the MatchContained method to find blog posts whose Author property contains an Author with a specific name.

Example:

C#
var searchQuery = client.Search<BlogPost>()
    .Filter(x => x.Authors.MatchContained(
        a => a.Name, "Winston Churchill"));

Note: The syntax for MatchContained is a bit different than other filtering methods. The first argument is an expression identifying the property that we want to filter on and the second is the value.

Also, while the MatchContained method lets you filter on a single field in an object in a list, you cannot use it to express multiple conditions on the same object in the list. That is, use it to find blog posts that have an author named Winston Churchill and that have an author with a specific email address, but you cannot use it to find blog posts with a specific author that both have a specific name and a specific email address.

Do you find this information helpful? Please log in to provide feedback.

Last updated: Nov 16, 2015

Recommended reading