Top "Nest" questions

NEST is a .NET client for elasticsearch

Creating an index Nest

How would I recreate the following index using Elasticsearch Nest API? Here is the json for the index including the …

elasticsearch indexing nest elasticsearch-mapping elasticsearch-analyzers
Bulk insert to ElasticSearch with NEST

I try to add 100k products to elasticsearch, but when i try i get: {"Validation Failed: 1: no requests added;"} My …

c# elasticsearch nest elasticsearch-net
Bulk Update on ElasticSearch using NEST

I am trying to replacing the documents on ES using NEST. I am seeing the following options are available. Option #1: …

elasticsearch nest elasticsearch-bulk-api
is there a way to deserialize Elasticsearch Nest search query?

upon building my Elasticsearch query using Nest, i want to be able to see the JSON version of what's being …

elasticsearch nest
Elasticsearch NEST 2 How to correctly map and use nested classes and bulk index

I have three main questions I need help answering. How do you correctly map and store a nested map? How …

elasticsearch nested nest
How do you debug your Nest queries?

I'm new to Nest, and I very likely am not creating my query like I think I am. My question …

c# elasticsearch nest
Simple match query to C# Nest

I new to Elasticsearch I have cURL GET /index/type/_search { "query": { "match": { "TextID": "WT" } } } I want to convert it …

c# elasticsearch lambda nest elasticsearch-net
How to write date range query in Nest ElasticSearch client?

I have a .Net application trying to fetch data from an elasticsearch document store, having records in the following structure: { "_…

c# .net lambda elasticsearch nest
Multi Terms search NEST C#

I want to do a search matching multiple values ( an array of values ) like this : var result1 = _client.Search<…

c# elasticsearch nest
NEST Query for exact text matching

I am trying to write a NEST query that should return results based on exact string match. I have researched …

c# elasticsearch nest