Top "Nest" questions

NEST is a .NET client for elasticsearch

NEST Conditional filter query with multiple terms

I would like to do a ElasticSearch query like this: { "query" : { "bool" : { "filter" : [ { "terms" : { "name" : ["name1", "name2"] } }, { "terms" : { "color" : ["orange", "…

c# elasticsearch nest
Index a dynamic object using NEST

I am building an API application that essentially allows a user to build a document, which can be structured however …

c# elasticsearch asp.net-web-api nest
ElasticSearch Nest Insert/Update

I have created an index in elastic using the following query: PUT public_site { "mappings": { "page": { "properties": { "url": { "type": "string" }, "…

elasticsearch nest
NEST: How to query against multiple indices and handle different subclasses (document types)?

I’m playing around with ElasticSearch in combination with NEST in my C# project. My use case includes several indices …

elasticsearch nest
ElasticSearch Search query is not case sensitive

I am trying to search query and it working fine for exact search but if user enter lowercase or uppercase …

elasticsearch nest
Static Query Building with NEST

I'm playing around with Elasticsearch and NEST. I do have some trouble understanding the various classes and interfaces which can …

c# static elasticsearch builder nest
How to sync MSSQL to Elasticsearch?

Every time I Google this, I find the "river" approach which is deprecated. I'm using Dapper if this is somehow …

c# sql-server-2008 dapper nest elasticsearch-net
ElasticSearch NEST Search Multiple Types & All Fields

Using ElasticSearch NEST, I am having trouble getting expected results back from my queries. My index/type layout is as …

c# search elasticsearch nest
Appending multiple bool filters to a NEST query

I'd like to append multiple bool filters with NEST, but I can't (practically) do it in a single statement as …

elasticsearch nest
How to search in ElasticSearch nested objects using NEST

I'm trying to search my elasticsearch nested objects by using NEST c# client. My index name is people and my …

c# .net elasticsearch nested nest