Posts by Thiago Sperandio • 35 points
2 posts
-
0
votes1
answer218
viewsQ: Elasticsearch: Add multiple fields of a document
I need to add fields different and join them in a single field on the return of the Elasticsearch (search in POST mode), but I only know the way distinctly sum each field, as follows: "aggs" : {…
elasticsearchasked Thiago Sperandio 35 -
3
votes1
answer371
viewsQ: Lambda - how to use the operator || (OR) in a . Any()
What would be the correct way to implement the line below, in Lambda? ListaDeRespostasPossiveis.Any(x => x.Nome == "respostaUm" || x.Nome == "respostaDois") I saw some examples in Stack Overflow…