How to use PropertyCriteria on complex property?

Posted by user1394710 on Stack Overflow See other posts from Stack Overflow or by user1394710
Published on 2014-06-06T06:16:06Z Indexed on 2014/06/06 9:25 UTC
Read the original article Hit count: 476

Filed under:
|

I'm new to EPiSERVER. Currently trying to search for a page with a specific property set to a specific value.

I need the property CatalogEntryPoint (a ContentReference) to equal something. Here is the criterea:

        PropertyCriteria secCriteria = new PropertyCriteria();

        secCriteria.Condition = CompareCondition.Equal;
        secCriteria.Name = "CatalogEntryPoint.ID";
        secCriteria.Type = PropertyDataType.Number;
        secCriteria.Value = currentContent.ContentLink.ID.ToString();
        secCriteria.Required = true;

And here is an excerpt from the search index:

{
  "CatalogEntryPoint": {
    "$type": "EPiServer.Find.Cms.IndexableContentReference, EPiServer.Find.Cms",
    "ID$$number": 1073742170,
    "WorkID$$number": 0,
    "ProviderName$$string": "CatalogContent",
    "GetPublishedOrLatest$$bool": false,
    "IsExternalProvider$$bool": true,
    "___types": [
      "EPiServer.Find.Cms.IndexableContentReference",
      "EPiServer.Core.ContentReference",
      "System.Object",
      "System.IComparable",
      "EPiServer.Data.Entity.IReadOnly"
    ]
  },

It would seem that the CatalogEntryPoint.ID-notation does not work as I'm getting 0 results. How should I write it?

© Stack Overflow or respective owner

Related posts about find

Related posts about episerver