我正试图通过使用Nest Elastic Search降低CarsSold的十大不同汽车订单。
我的弹性课程如下:
public class Make
{
public string MakeId {get;set;}
public string MakeName {get;set;}
public string Address { get;set;}
public List<Cars> Models {get;set;}
}
public class Cars
{
public int Id{get;set;}
public string CarsName {get;set;}
public int CarsSold {get;set;}
}
我尝试使用下面的代码,但该值未按CarsSold Descending排序:
var cars = Client.Search<Make>(s => s
.Size(0)
.Aggregations(a => a
.Terms("unique", t => t
.Field(f => f.Models.FirstOrDefault().CarsName)
.Size(10)
.Aggregations(a2 => a2
.Max("authStats", s1 => s1.Field(f => f.Models.FirstOrDefault().CarsSold))
)
)
)
);
非常感谢任何帮助。 好吧,我尝试使用聚合来使用Max And Stats。
答案 0 :(得分:4)
无论如何都找到了办法。 它可能会帮助像我这样挣扎的其他人: 使用以下代码完成:
var result = Client.Search<Make>(s => s
.Aggregations(a => a
.Terms("unique", te => te
.Field("cars.carsName")
.Size(10)
.OrderDescending("totalCount")
.Aggregations(aa => aa
.Max("totalCount", ma => ma
.Field("cars.carsSold")
)
)
)
)
);