说我已经启动了ElasticSearch并运行了Blog对象。
public class Blog
{
[ElasticProperty(Name = "guid", Index = FieldIndexOption.NotAnalyzed, Type = FieldType.String)]
public Guid? Guid { get; set; }
[ElasticProperty(Name = "title", Index = FieldIndexOption.Analyzed, Type = FieldType.String)]
public string Title { get; set; } = "";
[ElasticProperty(Name = "body", Index = FieldIndexOption.Analyzed, Type = FieldType.String)]
public string Body { get; set; } = "";
[ElasticProperty(Name = "publishedDate", Index = FieldIndexOption.Analyzed, Type = FieldType.Date)]
public DateTime PublishedDate { get; set; }
}
现在我只想将属性的子集返回到新类
public class BlogListItem
{
public static Expression<Func<Blog, object>> Selector = e => new BlogListItem
{
Title = e.Title,
PublishedDate = e.PublishedDate,
};
public string Title { get; set; }
public DateTime PublishedDate { get; set; }
}
通常我使用Entity Framework,我会在BlogListItem类中编写一个Selector,但我发现很难找到有关在NEST中使用ElasticSearch执行此操作的任何信息
var res = elastic.Search<Blog>(s => s
.From(0)
.Size(3)
.Index(blogIndex)
.Query(q => q.MatchAll())
.Sort(o => o.OnField(p => p.PublishedDate))
.Fields(BlogListItem.Selector)
);
var result = res.Hits.Select(e => e.Source).ToList();
这会返回正确的Hits数,但是使用null源,我无法找到返回属性的位置。
解决方案1 我找到了另一种解决方案,但如果这是一个很好的解决方案,我想提供输入。
var res2 = elastic.Search<Blog, BlogListItem>(s => s
.From(0)
.Size(3)
.Index(blogIndex)
.Query(q => q.MatchAll())
.Sort(o => o.OnField(p => p.PublishedDate))
);
List<BlogListItem> resultList = res2.Hits.Select(hit => hit.Source).ToList();
这给了我正确的对象返回,但我对映射没有任何控制,我不确定它是否返回所有属性然后进行映射。
解决方案2.5 在这个解决方案中,我使用新的Selector更新了我的BlogListItem。
public class BlogListItem
{
public static SearchSourceDescriptor<Blog> Selector(SearchSourceDescriptor<Blog> sr)
{
return sr.Include(fi => fi.Add(f => f.Title));
}
[ElasticProperty(Name = "title")]
public string TitleNewName { get; set; }
public DateTime PublishedDate { get; set; }
}
然后是我的elasticSearch代码
var res3 = elastic.Search<Blog, BlogListItem>(s => s
.From(0)
.Size(3)
.Index(blogIndex)
.Query(q => q.MatchAll())
.Sort(o => o.OnField(p => p.PublishedDate))
.Source(BlogListItem.Selector)
);
List<BlogListItem> resultList = res3.Hits.Select(hit => hit.Source).ToList();
现在这限制了返回的属性,因此我只获得了Title并且PublishedDate为null,我知道可以控制映射,这要归功于
[ElasticProperty(姓名=&#34;标题&#34;)]
仍然需要验证这是否是使用ElasticSearch的正确方法。
这会生成以下Json
{
"from": 0,
"size": 3,
"sort": [
{
"publishedDate": {}
}
],
"_source": {
"include": [
"title"
]
},
"query": {
"match_all": {}
}
}
答案 0 :(得分:1)
您的代码存在一些问题。
使用.Fields(BlogListItem.Selector)
返回一个名为&#34; publishedDate.title&#34;的字段。这当然是错的。我不确定如何使用Expression
语法来提及字段,因此我不会尝试修复它。我通过打印请求JSON发现了这个错误。查看my answer关于SO的另一个问题,了解如何通过打印请求JSON来调试Nest查询。您可以使用此技巧自行修复Expression
语法:)
我使用我最熟悉的语法修复了Fields()
:
.Fields(f => f
.Add(t => t.Title)
.Add(t => t.PublishedDate)
即使使用此修复程序,您也会发现该来源为null
。我们来到下一个问题。如果您在搜索请求中提供"fields"
选项,则"_source"
将不会出现在响应匹配中。这是Elasticsearch的行为,与Nest无关。在这种情况下,您必须依赖Fields.FieldValuesDictionary
而不是Source
:
var result = res.Hits.Select(e => e.Fields.FieldValuesDictionary).ToList();
然后你可以从上面的结果中构建BlogListItem
个对象。