Questions tagged [azure-search-.net-sdk]
260 questions
0
votes
1 answer
How to get the URL query string from Azure Search Parameters
I used to be able to retrieve the search URL from Microsoft.Azure.Search.Models.SearchParameters by calling ToString() on an object of that type. This seems to have broken, now ToString() just returns the class name (default .net behavior).
Is…

David W Gray
- 681
- 6
- 18
0
votes
1 answer
Azure search index regular expression issue
Consider the following set:
2017.16,
2017.16.a,
2017.16.b,
2017.167
I am trying to use a regular expression to search my azure index and return:
2017.16.a,
2017.16.b
using the following as my query:
accession_number:/2017\.16\.*/
returns three…

Ryan
- 45
- 5
0
votes
1 answer
Azure Full Search with wildcard or fuzzy search not returning expected result
I have following records in my Azure Search Index
{
"customerId": "8feda7ca-c9f0-40d9-86d8-434b0bbe94c2",
"registeredName": "TeamPeacock",
"tradingName": "TeamPeacock",
},
{
"customerId":…

Tushar Kesare
- 700
- 8
- 20
0
votes
0 answers
How to reliably know if a document is searchable in Azure Search?
I'm trying to write code that checks if a document that I just uploaded to Azure Search has been fully indexed and is ready to be found through searches. I'm having trouble finding a way to do this.
Here's some things I've tried, using the…

Jeroen
- 60,696
- 40
- 206
- 339
0
votes
1 answer
how to add custom fields in azure search
Scenario:
Blob storage: contains pdf, word, image files (about 70 files)
I used default fields and predefined skills to create an Azure search instance through the Azure Portal.
But the results for querying any text in these files is not very good.…

Vivek Jain
- 71
- 1
- 11
0
votes
2 answers
Adding a scoring profile with the .NET client
I can't find how to use the .NET Client for Azure search to add a scoring profile. Yes, I know there's a doc to do it using the REST API
Thanks.

Mario Lopez
- 1,405
- 13
- 24
0
votes
1 answer
Using a skillset when adding documents to Azure Search Index
I was able to successfully use a skillset (keyword extraction) for a column using an Indexer importing data from a Cosmos DB collection. However I want to eventually use the .NET SDK's DocumentsOperationsExtensions's IndexAsync() method to add…
0
votes
1 answer
How to filter autocomplete
I am feeding Azure Search with data from multi-tenant database, so every document in the index has a property TenantId. For searching, aggregations, suggestions I always filter by "TenantId eq 'xxx'" depending on the user calling it.
However for…

Georgi
- 395
- 3
- 4
0
votes
1 answer
Complex Types support in Azure Search .Net SDK
I want to know whether complex types are supported in the azure search sdk for .net?
I already know that the azure team is providing a private preview of this feature. But the last information I have is that it can be accessed only directly via REST…

Vignesh T
- 237
- 1
- 2
- 11
0
votes
2 answers
Is it possible to create a new Azure Search Service with Azure Search SDK?
I am writing a admin back end to manage our Azure search stuff and I was wondering if there is a way to use Azure Search SDK to create a new Azure Search Service on Azure portal? I don't see anything in the examples on the official Azure search…

Marko
- 12,543
- 10
- 48
- 58
0
votes
1 answer
Lookup document in azure search index using the key
There is this example (https://learn.microsoft.com/en-us/rest/api/searchservice/lookup-document#example) on how to search a document in the azure search index by passing in the key value. I want to do the same thing using Azure .NET SDK. Is there a…

sparsh agarwal
- 15
- 1
- 5
0
votes
1 answer
Azure search is returning Invalid Expression with Date Filter
I am running into an issue with Azure search which was working before but now
receiving Invalid Expression. Am I missing something.
Date Type of the filter filed-
{ "name": "ModifiedDateTime",
"type": "Edm.DateTimeOffset",
"searchable":…

zile
- 109
- 11
0
votes
1 answer
how to boost the score in azure search for unstructured blob data?
I am using Azure search which is using default indexing on the data which is importing unstructured data (pdf, doc, text, image files etc.)
I didn't make any scoring profile on the default available fields.
Almost every setting in the portal is the…

Vivek Jain
- 71
- 1
- 11
0
votes
1 answer
How to write "Ends With" regex in Azure Search
In Azure Search, on field with values like "12-10-3" or "30-843-44", I have setup a custom tokenizer to replace the dashes with empty string.
I now want to do an "ends with" regex search but cannot get it to do quite what I want.
For example, to…

Richard
- 116
- 1
- 6
0
votes
1 answer
Why does azure search .net fail with UTF-8 error when calling Indexes.Exists
I have tried to use the Azure Search .net api but I cannot get past a UTF-8 encoding error when I try to either check if an index exists or create an index.
To keep things simple I tried…

Andrew Rose
- 11
- 3