Hi Guys,
I'm new to Elasticsearch and below is my Use case.
Use-case:
- We're trying to implement Elasticsearch as SearchEngine for product developed in Microsoft .Net.
- Document provided to SDK API will be in the format of JSON (Not strongly typed), hence I'm using Elasticseach.Net SDK instead of NEST SDK.
- Fields in document will determined only during run-time, hence I'm using Elasticseach.Net SDK instead of NEST SDK.
- JSON document will have NESTED objects.
- Dynamic Mapping.
I've Created Index through Elasticsearch.Net API as below,
NESTClient.LowLevel.Index(index, type, docID, jsonData)
Can you please provide a sample code for, on how to Search documents with given value for a field (Nested object) ?
Thanks in Advance.