使用Sitecore 8内容搜索API的复杂查询

时间:2015-08-31 06:20:03

标签: c# linq sitecore sitecore8

我正在尝试编写一个Linq来使用sitecore内容搜索API迭代ID列表,但它会抛出此异常

  

无效的方法调用参数类型:字段 - FieldNode - 字段:supplier_categories_sm - DCP.Common.Models.Shared.CategoryItem []。只支持常量参数。

   //The search item class
 public class EventSupplierItem : BaseSearchItem
 {
    [IndexField("supplier_categories_sm")]
    public CategoryItem[] SupplierCategories { get; set; } //maped to multilist
 }
 //I have wrote custom converter to map the multilist to that item
 public class CategoryItem
{
    [SitecoreId]
    [IndexField("_group")]
    [TypeConverter(typeof(IndexFieldIDValueConverter))]
    public virtual ID Id { set; get; }

    [IndexField("name")]
    public string Name { get; set; }
}

创建过滤谓词以获取结果的代码:

  var EventCategoryID = new ID(EventSupplierFilters.SupplierCategory);
                    FilterOR = FilterOR.Or(x => x.SupplierCategories.Select(a => a.Id).Contains(EventCategoryID));
                    filter = filter.And(FilterOR.Predicate);
 results = queryable.Filter(filter.Predicate);
 executedResults = results.ToList();

我还尝试使用.Any代替.Select,但仍然会抛出相同的异常,因为Sitecore内容搜索linq不支持表达式中的AnySelect 。 有谁知道处理这个问题的最佳方法是什么?

5 个答案:

答案 0 :(得分:0)

我认为问题的根本原因是这些表达式需要解析为Lucene queries,这与你期望的工作相比是非常有限的。我想到的方式是,所有被转换为查询的内容都需要解析为格式化的字符串查询 - more information on that is explained here

最简单的方法可能是使用单个'Where'查询一次比较一个东西,然后当你需要复杂的逻辑将它转换为List,然后再尝试对它运行复杂的IEnumerable查询。 / p>

或者你可以深入研究并尝试理解LINQ中常量表达式的工作方式 - 但这并不是我真正熟悉的东西。

答案 1 :(得分:0)

我遇到了类似的问题,并沿着使用我自己的表情树的路线前进。

以下是在搜索索引中检索到的ID列表上进行Contains匹配的示例。

   public static Expression<Func<CustomSearchResultItem, bool>> MatchOnMultipleValues(IEnumerable<string> arrayOfIds, string parameter)
    {
        var predicate = PredicateBuilder.True<CustomSearchResultItem>();
        foreach (var id in arrayOfIds)
        {
            // create dynamic expression tree for filter for Enumerable properties (multivalued)
            Expression constant = Expression.Constant(id);
            ParameterExpression parameterExpression = Expression.Parameter(typeof(CustomSearchResultItem), "s");
            Expression property = Expression.Property(parameterExpression, parameter);

            // Call contains method on IEnumerable
            var callExpression = Expression.Call(typeof(Enumerable), "Contains", new[] { typeof(string) }, property, constant);
            predicate = predicate.Or(Expression.Lambda<Func<CustomSearchResultItem, Boolean>>(callExpression, parameterExpression));
        }
        return predicate;
    }

  query = query.Where(ExpressionMatches.MatchOnMultipleValues(arrayIds, Id));

CustomSearchResultItem是我自己的POCO类,用于处理搜索结果,其运行方式与EventSupplierItem类相同。 matchonmultiplevalues方法正在对字符串数组执行包含,但您可以对此进行调整以使用CategoryItem数组。

答案 2 :(得分:0)

是的,您需要获取ID然后使用它们构建查询,而不是在过滤器中执行select语句。在为搜索构建一些复杂的谓词表达式时,我遇到了很多麻烦:)

答案 3 :(得分:0)

Sitecore LINQ可能无法解析您的复杂查询,请尝试以下操作,它将返回预期的结果:

var normalizedID = Sitecore.ContentSearch.Utilities.IdHelper.NormalizeGuid(EventSupplierFilters.SupplierCategory,true);
FilterOR = FilterOR.Or(x => x["supplier_categories_sm"].Contains(normalizedID));
filter = filter.And(FilterOR.Predicate);
results = queryable.Filter(filter.Predicate);
executedResults = results.ToList();

答案 4 :(得分:0)

在Fortis源代码中有一个如何执行此操作的示例。有两种扩展方法.ContainsAnd.ContainsOr,它们会将ID列表与另一个字段进行比较。

以下是来源:https://github.com/Fortis-Collection/fortis/blob/master/Fortis/Search/SearchExtensions.cs

您可以根据需要自定义。

在使用中我们称之为:

var query = searchContext.GetQueryable<IItemWrapper>().ContainsOr(x => x.FieldName, arrayValues);