Questions tagged [azure-search-.net-sdk]

260 questions
2
votes
1 answer

If i run several Azure Search Indexers in rapid succession, is there a way to access that queue of waiting indexers in the Azure SDK?

I have several searches that my application uses and they are relatively big searches, millions of documents each, I am looking to simply display the queue of indexers waiting to run on a page in my application. This is so I can have a better…
2
votes
2 answers

Azure Search - Is the count approximate or real?

I am with an Azure Search with around 615k docs. I am getting different counts when using $count when comparing with the previous search based on sql server. O the official doc I could not find any information about it, but here on StackOverflow…
Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90
2
votes
1 answer

Azure Search .NET SDK Custom Analyzer

Without too much background, here's my issue: To create a new Azure Search index using the .NET SDK in C# (using the Hotel example provided in the documentation) my code looks something like this: public class Hotel { …
C.J.
  • 21
  • 5
2
votes
1 answer

Microsoft.Azure.Search (sdk v3.0.3) don't return all the facets correctly

When I use Microsoft.Azure.Search (v3.0.3)'s "SearchAsync" and "Search" methods to return the indexed items, the sdk doesn't return all the facets. However; when I try the same thing using Postman, it returns all the facets correctly. Could this…
2
votes
1 answer

How to use reserved words in Azure Search Filter?

I am using Azure Search Filter option like follows $filter=cityList/any(t: search.in(t, '1')) and name eq 'hi tech bar & restaurant' &search=*&scoringProfile=search-score&searchMode=Any&queryType=FULL For all word filters except reserved words are…
vishnu
  • 223
  • 1
  • 4
  • 16
2
votes
2 answers

Get actual count of matches in Azure Search

Azure Search returns a maximum of 1,000 results at a time. For paging on the client, I want the total count of matches in order to be able to display the correct number of paging buttons at the bottom and in order to be able to tell the user how…
birdus
  • 7,062
  • 17
  • 59
  • 89
2
votes
2 answers

Azure Search SDK: how to specify data source

We're getting tired of creating our Azure Search index manually during development, so I'm writing a console app to do it for us. We already have a data source in Azure which is a database view. That view will feed the index. My question is how do I…
birdus
  • 7,062
  • 17
  • 59
  • 89
2
votes
1 answer

Document Design for Azure Search

I'm posting to see if anyone has a solution or can provide some guidance on modelling some data in order to be used in azure search. The problem domain I am currently using DocumentDB to model some data which I would like to search. My document,…
2
votes
2 answers

Querying JSON Blob storage via azure search

I have a need to query JSON data stored in Azure blob storage, for operations of filtering (on data types text, data and int), paging (i.e. a functionality similar to skip and take). The problem my JSON structure is that there is no specific format…
puneet
  • 492
  • 1
  • 8
  • 25
2
votes
1 answer

Azure search error "Inheritance security rules violated"

I am running on .NET 4.6.2 and MVC v5.2.3 with the latest 3.0.1 Azure Search library. My problem is that the search index client is throwing an error with the following code. This does not occur on a different .NET 4.5 web app. var…
Matty
  • 873
  • 8
  • 21
2
votes
1 answer

Azure Search analyzer is not matching other word tense

I am using the following definition for my Search Field on the index that is being searched new Field("Description", DataType.String, AnalyzerName.EnMicrosoft), using the english microsoft text analyzer, however it does not seem to be matching…
1
vote
1 answer

Lucene syntax as objects instead of query string in Azure search

I would like to send the filter as a syntax tree, and not a query string, to Azure search. Ist that possible? All I can find is to send the filter as a string. I have a filter syntax like ( State eq 1 ) or ( Domain eq 'Love' ) but I'd like to send…
LosManos
  • 7,195
  • 6
  • 56
  • 107
1
vote
1 answer

Azure search service with multiple filters

I am using Azure Search Service for a Web API. Can anyone help me in passing filterquery to the search service with multiple filter options using c#. (OData with multiple filters). Exact requirement: When filters applied in search results, the…
1
vote
1 answer

Azure Search orders results based on the position of the matched text

I would like to sort the documents based on the position of the matching text and then alphabetically. E.g I have follow 3 values. PATRICK STREET WEST MOUNT ST PATRICK ROAD PATTI MCCULLOCH WAY I am search with Pat* and I want the results should be…
1
vote
1 answer

Where is ContinuationToken in Azure.Search.Documents v11

In Microsoft.Azure.Search.Data v10 when calling ISearchIndexClient.Documents.SearchAsync I got a result with a ContinuationToken property. In Azure.Search.Documents v11 I can't find it when calling SearchClient.SearchAsync which - as far as I have…
LosManos
  • 7,195
  • 6
  • 56
  • 107
1 2
3
17 18