Top "Nest" questions

NEST is a .NET client for elasticsearch

Filter items which array contains any of given values

I have a set of documents like { tags:['a','b','c'] // ... a bunch properties } As stated in the title: Is …

elasticsearch nest
Get raw query from NEST client

Is it possible to get the raw search query from the NEST client? var result = client.Search<SomeType>(…

elasticsearch nest
How do I update an existing document inside ElasticSearch index using NEST?

I am trying to update an existing indexed document. I have indexed tags, title and owners field. Now when the …

c# elasticsearch nest
Kibana Alternatives

I am having an issue in kibana. It does not show any results in the Discover tab. Please look here …

elasticsearch kibana nest elastic-stack
Is there a way to retrieve all records in a (ElasticSearch) NEST query?

I'm doing this query in NEST var result = elasticClient.Search<SearchItemClass>( s=> s.Index("indexName") .Type("typeName") .…

elasticsearch nest
Elasticsearch and .NET

We're considering to switch from Solr/Solr.net to Elasticsearch. We started with NEST. We have only 4 documents in search …

c# .net asp.net-mvc elasticsearch nest
Case insensitivity does not work

I cant figure out why my searches are case sensitive. Everything I've read says that ES is insensitive by default. …

elasticsearch nest
Searching ElasticSearch using NEST C# Client

I started looking around for a search engine and after some reading I decided going with ElasticSearch (which is quite …

c# elasticsearch nest
Elasticsearch search query to retrieve all records NEST

I have few documents in a folder and I want to check if all the documents in this folder are …

c# elasticsearch nest
Scroll example in ElasticSearch NEST API

I am using .From() and .Size() methods to retrieve all documents from Elastic Search results. Below is sample example - …

elasticsearch nest