You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/tutorial-csharp-search-query-integration.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: diberry
7
7
ms.author: diberry
8
8
ms.service: azure-ai-search
9
9
ms.topic: tutorial
10
-
ms.date: 01/17/2025
10
+
ms.date: 01/21/2025
11
11
ms.custom:
12
12
- devx-track-csharp
13
13
- devx-track-dotnet
@@ -34,7 +34,9 @@ The function app authenticates through the SDK to the cloud-based Azure AI Searc
34
34
35
35
## Azure Function: Search the catalog
36
36
37
-
The [Search API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Search.cs) takes a search term and searches across the documents in the search index, returning a list of matches.
37
+
The [Search API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Search.cs) takes a search term and searches across the documents in the search index, returning a list of matches. As the user types, the partial string is sent to the search engine, suggesting search terms such as book titles and authors across the documents in the search index, and returning a small list of matches.
38
+
39
+
The search suggester, `sg`, is defined in the [schema file](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/bulk-insert/BookSearchIndex.cs) used during bulk upload.
38
40
39
41
The Azure function pulls in the search configuration information, and fulfills the query.
40
42
@@ -46,14 +48,14 @@ Call the Azure Function in the React client with the following code.
<!--## Azure Function: Suggestions from the catalog
50
52
51
53
The [Suggest API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Suggest.cs) takes a search term while a user is typing and suggests search terms such as book titles and authors across the documents in the search index, returning a small list of matches.
52
54
53
55
The search suggester, `sg`, is defined in the [schema file](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/bulk-insert/BookSearchIndex.cs) used during bulk upload.
0 commit comments