Skip to content

Commit f6a9549

Browse files
author
PeterTurcan
committed
removing facets
1 parent 603e7c7 commit f6a9549

File tree

4 files changed

+5
-246
lines changed

4 files changed

+5
-246
lines changed

articles/search/TOC.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
href: tutorial-csharp-paging.md
4040
- name: 3 - Add type-ahead
4141
href: tutorial-csharp-type-ahead-and-suggestions.md
42-
- name: 4 - Add facets
43-
href: tutorial-csharp-facets.md
44-
- name: 5 - Add geospatial filters
45-
href: tutorial-csharp-geospatial-searches.md
4642
- name: Index Azure SQL Database
4743
href: search-indexer-tutorial.md
4844
- name: Index Azure JSON blobs

articles/search/tutorial-csharp-facets.md

Lines changed: 0 additions & 236 deletions
This file was deleted.

articles/search/tutorial-csharp-paging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ Have the basic search page solution open.
7070
}
7171
```
7272

73+
>[!Tip]
74+
>If you are running this project on a device with a smaller screen, such as a laptop, then consider changing **ResultsPerPage** to 2.
75+
7376
3. Add paging properties to the **SearchData** class, say, after the **searchText** property.
7477

7578
```cs
@@ -411,9 +414,6 @@ This variable is a string, which holds "next" if the next page of results should
411414
}
412415
```
413416

414-
>[!Tip]
415-
>If you are running this app on a laptop, rather than a desktop, consider setting the value to 2, rather than 3.
416-
417417
### Add a vertical scroll bar to the view
418418

419419
1. Locate the section of the index.cshtml file that displays the results (it starts with the **@if (Model != null)**).

articles/search/tutorial-csharp-type-ahead-and-suggestions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,6 @@ Consider the following takeaways from this project:
455455

456456
## Next steps
457457

458-
One of the issues with autocompletion and suggestions is that they involve repeated calls to the server (one on every key stroke after the minimum number of characters typed is reached). If these repeated calls results in slower than expected responses, then the user experience diminishes. Using facets provides an interesting alternative to avoid these repeated calls, which we will look at next.
458+
You have completed this series of C# tutorials - you should have gained valuable knowledge of the Azure Search APIs.
459459

460-
> [!div class="nextstepaction"]
461-
> [C# Tutorial: Use facets for navigation and network efficiency - Azure Search](tutorial-csharp-facets.md)
460+
For further reference and tutorials, consider browsing [Microsoft Learn](https://docs.microsoft.com/en-us/learn/browse/?products=azure), or the other tutorials in the [Azure Search Documentation](https://docs.microsoft.com/en-us/azure/search/).

0 commit comments

Comments
 (0)