Skip to content

Commit dbe35bf

Browse files
Merge pull request #317 from PhilKang0704/broken-link-fix-diberry
Broken links fixing - diberry
2 parents be7bf8b + cc13c18 commit dbe35bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/tutorial-csharp-search-query-integration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The function app authenticates through the SDK to the cloud-based Azure AI Searc
3434

3535
## Azure Function: Search the catalog
3636

37-
The [Search API](https://github.com/Azure-Samples/azure-search-static-web-app/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.
3838

3939
The Azure function pulls in the search configuration information, and fulfills the query.
4040

@@ -48,9 +48,9 @@ Call the Azure Function in the React client with the following code.
4848

4949
## Azure Function: Suggestions from the catalog
5050

51-
The [Suggest API](https://github.com/Azure-Samples/azure-search-static-web-app/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.
51+
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.
5252

53-
The search suggester, `sg`, is defined in the [schema file](https://github.com/Azure-Samples/azure-search-static-web-app/bulk-insert/BookSearchIndex.cs) used during bulk upload.
53+
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.
5454

5555
:::code language="csharp" source="~/azure-search-static-web-app/api/Suggest.cs" :::
5656

@@ -62,7 +62,7 @@ The Suggest function API is called in the React app at `\client\src\components\S
6262

6363
## Azure Function: Get specific document
6464

65-
The [Document Lookup API](https://github.com/Azure-Samples/azure-search-static-web-app/api/Lookup.cs) takes an ID and returns the document object from the Search Index.
65+
The [Document Lookup API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Lookup.cs) takes an ID and returns the document object from the Search Index.
6666

6767
:::code language="csharp" source="~/azure-search-static-web-app/api/Lookup.cs" :::
6868

0 commit comments

Comments
 (0)