Questions tagged [azure-search-.net-sdk]
260 questions
0
votes
0 answers
Uploading ID to same Azure Blob Index that a file is being uploaded to using .Net SDK
I am uploading documents to my an Azure Blob Storage, which works perfect, but I want to be able to link and ID to this specifically uploaded document.
Below is my code for uploading the file:
[HttpPost]
public ActionResult…

AxleWack
- 1,801
- 1
- 19
- 51
-1
votes
1 answer
Partial update in Azure cognitive search document
Is there a way for patch/partial update in Azure cognitive search?
I need to update just one field in the search document.
We have 100 fields (including complex types) in the search document. If I want to just update one single field which is of…

Amarjeet Kumar
- 93
- 2
- 8
-1
votes
1 answer
Azure Search: Create Index for complex types
I have a blob storage that contains some xml-files. I want to use the power of Azure Search to easily find documents in this blob storage. The structure of the XML-files are in this format:
-
12345
…

Tobias Moe Thorstensen
- 8,861
- 16
- 75
- 143
-1
votes
2 answers
How to create a suggester in azure search index
When I try to create a suggester on an index using .net sdk I get an error.
I can create index successfully using .net SDK but when I try to add suggester I get an error.
My index code:
var index = new Index()
{
Name = "customeridex",
Fields =…

Abdullah
- 307
- 2
- 6
- 16
-2
votes
1 answer
Which columns should be indexed in Azure search?
Help me understand the concept a little bit,
As per documentation:
In Azure Cognitive Search, a search index is your searchable content
If I have to make entire SQL table searchable then does it mean all the columns should be defined as indexable?

Abhijeet
- 13,562
- 26
- 94
- 175