Questions tagged [azure-search-.net-sdk]
260 questions
1
vote
1 answer
How does one set custom parameters on the WordDelimiter TokenFilter
I want to use Azure Search using the .NET SDK in C#. How do I create an analyzer that uses the WordDelimiter TokenFilter with the property preserveOriginal set to true?
The properties for an custom analyzer only seem to include…

Charley Rathkopf
- 4,720
- 7
- 38
- 57
1
vote
1 answer
Azure Search SDK fails partial search when using special characters
I have a below code which should return all the names starting with T&S from azure index
for example the results should be like below
T&S
T&S Limited
T&S Corporation
The search text we see in the code is the UrlEncoded version of "T&S*"
Search…

Sike12
- 1,232
- 6
- 28
- 53
1
vote
1 answer
Azure Search Order Alpha Before Numeric
When ordering results from Azure Search, the sort order of the results is that string values that start with numbers or special characters come before string values that start with letters.
As best I can tell, the default ordering rules for the…

PoorInRichfield
- 1,436
- 2
- 19
- 29
1
vote
1 answer
Using variables in azure search filter
I am creating a search for a website and using many filter options. I want to use filter on my many search results and for that i saw Filter property in SearchParameters for Azure Cognitive search.
What i want is to pass a variable in Filter when i…

Aryanzee
- 11
- 3
1
vote
1 answer
How to implement Azure Cognitive Search with custom encrypted data in Azure Blob Storage
My Application is storing data for customers under one Blob Storage Account and each customer is allocated a specific container.
Under the container, the data for the specific customer is saved in multiple Append Blobs, however, the data is…

Umer
- 159
- 4
- 15
1
vote
1 answer
How to delete a document (table) or a group of documents using Azure Search SDK (Library)
I want to delete an item (document) using the document Id using the library Microsoft.Azure.Search. How can I do that?
Follows what I've tried so far:
public Task DeleteItems(IEnumerable itemsIds)
{
return Task.Run(() =>
…

Ricardo Rocha
- 14,612
- 20
- 74
- 130
1
vote
1 answer
Fuzzy search using Lucene with Azure Search .NET SDK
I am trying to use Fuzzy search in combination with partial search and match boosting, using the Azure Search .NET API.
This is what I currently have, it doesn't work yet:
// Create SearchIndexClient
searchIndexClient= new…

Martijn
- 739
- 9
- 26
1
vote
1 answer
Creating multiple rules in Azure search Synonym map is not working
I am creating a synonym map like below,
{ "name": "country-synonym",
"format":"solr",
"synonyms": "germany, dl, deutschland\n
india, ind"
}
But when I queried the synonym to view it, it was created like below, instead of two rules, only one…

Mary Reni Rajaian
- 21
- 5
1
vote
1 answer
How to page-wise index a blob document in Azure Cognitive Search?
I am new to Azure Search. I am indexing few pdf documents using this method
But, I want to get search result page-wise. It is currently providing result from the whole document, but instead of that I want the result to be shown from each page and I…

Subhabrata Mallick
- 101
- 1
- 6
1
vote
1 answer
Azure Cognitive Search - How to filter by fields containing special characters
We are using the Azure Cognitive Search .NET SDK and are trying to $filter by a string field that can contain Search-special characters such as &, as well as single quotes.
We get zero results when filtering against a test case with the kitchen sink…

System.Cats.Lol
- 1,620
- 1
- 26
- 47
1
vote
1 answer
Azure Search: Export Results to CSV
Just wondering, would it be possible to extract my search results to CSV? Maybe placing a button on the html body to extract the info. Thank you.
My search results are defined as below.
const resultTemplate = `

raddy
- 25
- 4
1
vote
1 answer
Azure Cognitive Search: Open PDF and highlight text
I have multiple PDFs in a blob storage and Azure cognitive search is applied on this blob storage. When
searched is performed, it'll return the result with PDF filename and other related meta-data.
Now my requirement is to:
Open the PDF in which…

Umer Qureshi
- 1,736
- 2
- 20
- 22
1
vote
2 answers
Azure Search - querying for ampersand character
I'm trying to find all records which contain & symbol, which is reserved. I'm using search, not $filter.
According to documentation, it can not be escaped with \%, and should be escaped as HTML url part to %26.
Trying SDK and Search explorer to find…

dr11
- 5,166
- 11
- 35
- 77
1
vote
0 answers
Microsoft.Azure.Search API - ContnueSearchAsync - Are results appended?
When using the Search methods, the documentation states that the data may not be returned all at once. If it is not then you will get a continuationToken and you will have to call the search again.
This is how I have it coded up.
var…

Webbert
- 51
- 6
1
vote
1 answer
How to allow wildcards for custom analyzer in Azure Search
Thanks for your help in advance.
I am using Azure Search .Net SDK to build an indexer. I am currently also using a custom analyzer
Before using the custom analyzer, I was using EnLucene analyzer, which allowed me to use wildcard search *.
For…

Kyle Ahn
- 39
- 4