azure-search-.net-sdk Questions
1
I have this
private string DecodeBase64(string base64Input)
{
try
{
if (string.IsNullOrEmpty(base64Input))
{
return "";
}
byte[] decodedBytes = Convert.FromBase64String(base64Inpu...
Precision asked 27/3, 2023 at 7:52
2
I'm using the Azure Search .Net SDK.
I'm calling a synchronous (NOT ASYNC) function like this:
var searchResults = searchIndexClient.Documents.Search<T>(searchText, searchParameters);
It ...
Superinduce asked 7/11, 2016 at 7:23
2
Solved
We had some big excitement yesterday. Two of our web apps (both deployed and untouched for at least 3 months) that use AzureSearch's SDK stopped working at different times (one early morning; the o...
Subsist asked 26/2, 2020 at 14:48
3
Solved
Using .NetCore 1.1.2.
After successfully getting results from a search via Azure Search SDK, I am trying to decode the metadata_storage_path value. I've seen people saying to use HttpServerUtility...
Synsepalous asked 2/6, 2017 at 22:12
1
Solved
I have following Data in my Index,
{
"name" : "The 100",
"lists" : [
"2c8540ee-85df-4f1a-b35f-00124e1d3c4a;Bellamy",
"2c8540ee-85df-4f1a-b35f-00155c...
Chinn asked 26/9, 2017 at 9:8
1
Solved
The Exception I am getting is: The property 'documentType' does not exist on type 'search.documentFields'. Make sure to only use property names that are defined by the type.
I have googled this an...
Johnsonian asked 26/5, 2017 at 14:12
1
Solved
I have an ASP.NET Web Application that uses 30-40 different search indexes across 5-6 search services (various clients are in different pricing tiers).
Currently I am marshaling a new instance of ...
Delorisdelorme asked 20/1, 2017 at 18:13
1
© 2022 - 2024 — McMap. All rights reserved.