我有一个具有坐标字段的POCO,使用NEST进行的映射和地理坐标搜索都按预期工作。但是,我试图用NEST做的也是从GeoDistance查询中指定的点返回距离作为搜索结果的一部分。到目前为止,我的研究表明有两种方法可以做到这一点:
我决定使用选项2运行,这里有一些代码:
public class User
{
public int ID { get; set; }
[GeoPoint]
public Coordinate Location { get; set; }
}
查询本身:
var results = elasticClient.Search<User>(s => s
.Index("user")
.Query(q => q
.GeoDistance(gd => gd
.Field(f => f.Location)
.Distance(Distance.Miles(distance))
.Location(GeoLocation.TryCreate(data.Latitude, data.Longitude))
) && q
.Exists(e => e
.Field("location")
)
)
.ScriptFields(sf => sf
.ScriptField("distance", sf2 => sf2
.Inline(String.Format("doc['location'].arcDistance({0},{1})", data.Latitude, data.Longitude))
.Lang("painless")
)
)
);
虽然直接针对elasticsearch运行此查询似乎很好,但当我这样做时,我有一些问题:
我的问题是:在NEST中访问脚本字段的推荐方法是什么?我是否必须完全放弃自动映射?或者我应该选择排序选项,即使我不想特别想对结果进行排序?
答案 0 :(得分:1)
我最终设法接近我想要的东西:
[ElasticsearchType(Name = "User")]
属性添加到我的搜索结果子类在枚举结果中的Hits
时,访问我的脚本字段:
((JArray)item.Fields["distance"]).Value<double>(0) / 1609.344
如果有人有更清洁的方法,请告诉我!
答案 1 :(得分:0)
使用 ValueOf 方法有更清晰的方法。 示例
item.Fields.ValueOf<User, string>(p => p.Distance)