Elastic Search using NEST Field Boosting
I am using Elastic Search in C# using the NEST strongly typed client. I have an index containing Entries: [ElasticType(Name = "Entry", IdProperty = "Id")] public class Entry { public string Id { get; set; } public string Title { get; set; } public string Description { get; set; } public string Award { get; set; } public int Year { get; set; } } Where Year is the year of the entry, eg 2012, and Award is the type of Award the Entry won, which can be null. I then want to search these Entries using boosting for different properties. In the following code, I want results to be ranked higher that