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

260 questions
0
votes
1 answer

Azure Search: aggregate results across multiple indexes and/or search services

Circumstances outside my control obligate me to use multiple indexes and possibly multiple azure search services to store searchable data. Since multiple index queries are not supported and the search results relevancy scores are relative to their…
0
votes
1 answer

How to specify AND and OR search between keywords in Azure Search SDK?

I am developing an Azure Function that makes a call to an Azure Search, gets the search results based on some keywords and then sends it back to the front end application. I have a searchable column in my Azure Search Data Source (an Azure Table).…
0
votes
1 answer

enable azure search synonyms

I'm trying to enable a synonym map to some fields using the following code: public ActionResult ConfigFieldToUseSynonyn() { string searchServiceName = "xxx"; string apiKey = "123123123123123123123123123"; …
0
votes
1 answer

azure search - are datediff / dateadd functions available?

I would like to know if the SQL Functions (DateAdd / DateDiff) are available on Azure Search. I could not find examples / docs about it, but they exist on ODATA official doc: http://cdn.cdata.com/help/RDA/jdbc/pg_sqldatefunctions.htm In case they…
Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90
0
votes
1 answer

azure search: same query on portal returns data, through .net sdk don't

Passing my search text as: (Email: /.*jackson.*/)&(Postcode: /.*jackson.*/)&(FirstName: /.*jackson.*/)&(LastName: /.*jackson.*/)&(City: /.*jackson.*/)&(Answers: /.*jackson.*/) and my Search Parameters…
Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90
0
votes
1 answer

Index structure for azure search

I'm putting together a query to index medicines. A user should be able to enter their search term into a single search box. Their search term might be either a brand name for a drug, a generic name (the underlying compound on which all brands are…
user3603308
  • 355
  • 4
  • 17
0
votes
2 answers

Azure Search - SearchMode : ANY - not working as expected

Fields (All fields are filterable) DocumentName : string Document_types : ['type1','type2','type3'] Date : Date I'm using .net library in order to make calls to Azure Search API. Example A (ANY) - I want to get all the results where keyword is Text…
0
votes
1 answer

Azure search not returning correct result with . (dot) in search query

We have stored documents into azure search. One of the document is having below field value. "Title": "statistics_query.compute_shader_invocations.secondary_inherited fails" We have defined custom analyzer on it as per the recommendation from MS…
user1233802
  • 573
  • 1
  • 5
  • 21
0
votes
1 answer

AzureSearch filter not working expected

I migrated my SQL data into AzureSearch document to try new search experience. I'm not able to filter data using .net sdk (3.0.4) public IActionResult Search(string state, string category, string search, short pageNumber = 1, short pageSize = 10) …
Pankaj Rawat
  • 4,037
  • 6
  • 41
  • 73
0
votes
1 answer

Azure Search for Person macthing with multiple fields and scoring profile

I am trying to see if i can use Azure search to do a Person match. i try to match person based on different attributes score them based on match and higher than certain threshold is considered that this person is a match against my azure search…
Justin Homes
  • 3,739
  • 9
  • 49
  • 78
0
votes
1 answer

How to automatically update data source and index for a view in Azure Search

How can I update the exiting data source which is create from azure SQL view. What are steps I need to follow once when dealing with azure search for Database view. My Data source& index should be updated once my view gets updates.
Champ
  • 690
  • 1
  • 7
  • 13
0
votes
2 answers

Azure Search using REST c#

I am trying to run the following code: public class Item { [JsonProperty(PropertyName = "api-key")] public string apikey { get; set; } } [[some method]]{ var url = "https://[search service…
0
votes
1 answer

Azure Search - Query

So I'm using the C# nuget wrapper around Azure Search. My problem is I have a index of products: public class ProductDocument { [System.ComponentModel.DataAnnotations.Key] public string Key { get; set; } [IsSearchable] public string…
user1829226
  • 125
  • 1
  • 8
0
votes
1 answer

Exclude File Name with extension in Azure Search .net sdk

I have written a .net sdk to create index and Indexer. How i Exclude some files from indexing based on the extension. I am not able to find sample/example to do the same Indexer indexer = new Indexer() { Name = indexerName, …
user1500960
0
votes
1 answer

Azure Search on blobs retrieve the blob itself after search

How would I retrieve the actual blob (pdf) itself via azure search? I know there are some Lookup possibilities but these only give me text representation of the content. I want a pdf download/stream of the underlaying document. How would I go over…
Viking
  • 465
  • 3
  • 15