I would like to use Nest to populate the completion suggestion field into an index. After reading this ElasticSearch blog post about implementing a completion field I see you can have the following properties:
- array of inputs
- single output
- weight
- payload
I am assuming that to load this data into an index I need to include an entity on my search object that contains the above fields?
I was able to finally load the completion field by creating several classes, and following the FluentMappingFullExample unit test, specifically the following part:
For my search type entity, I created a field called suggest and made it of type CompletionField.
After I loaded my entity from the db using dapper, I then looped over the results and loaded my completion field with the appropriate inputs that I wanted. I was then able to successfully call the suggest API and query on this data. I hope this helps someone else.