Skip to content

Commit 14f65c3

Browse files
committed
picking up more changes
1 parent 9ab22fa commit 14f65c3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

articles/search/tutorial-csharp-create-first-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.topic: tutorial
1111
ms.date: 02/10/2020
1212
---
1313

14-
# Tutorial: Create your first search app using the .NET SDK - Azure Cognitive Search
14+
# Tutorial: Create your first search app using the .NET SDK
1515

1616
Learn how to create a web interface to query and present search results from an index using Azure Cognitive Search. This tutorial starts with an existing, hosted index so that you can focus on building a search page. The index contains fictitious hotel data. Once you have a basic page, you can enhance it in subsequent lessons to include paging, facets, and a type-ahead experience.
1717

articles/search/tutorial-csharp-facets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: C# tutorial on using facets to aid navigation
33
titleSuffix: Azure Cognitive Search
4-
description: This tutorial builds on the "Search results pagination - Azure Cognitive Search" project, to add facet navigation. Learn how facets can be used to easily narrow a search.
4+
description: Continue from "Paging results" to add faceted navigation. Learn how facets can be used to easily narrow a search.
55

66
manager: nitinme
77
author: HeidiSteen
@@ -11,7 +11,7 @@ ms.topic: tutorial
1111
ms.date: 02/10/2020
1212
---
1313

14-
# Tutorial: Add facet navigation using the .NET SDK
14+
# Tutorial: Add faceted navigation using the .NET SDK
1515

1616
Facets are used to aid navigation, by providing the user with a set of links to use to focus their search. Facets are attributes of the data (such as the category, or a specific feature, of a hotel in our sample data).
1717

articles/search/tutorial-csharp-orders.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: C# tutorial on ordering results
33
titleSuffix: Azure Cognitive Search
4-
description: This tutorial demonstrates how to order search results. It builds on a previous hotels project, ordering by primary property, secondary property, and includes a scoring profile to add boosting criteria.
4+
description: This C# tutorial demonstrates how to order search results. It builds on a previous hotels project, sorting by primary property, secondary property, and includes a scoring profile to add boosting criteria.
55

66
manager: nitinme
7-
author: tchristiani
8-
ms.author: terrychr
7+
author: HeidiSteen
8+
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: tutorial
1111
ms.date: 02/10/2020
1212
---
1313

14-
# C# tutorial: Order the results - Azure Cognitive Search
14+
# Tutorial: Order search results using the .NET SDK
1515

1616
Up until this point in our series of tutorials, results are returned and displayed in a default order. This can be the order in which the data is located, or possibly a default _scoring profile_ has been defined, which will be used when no ordering parameters are specified. In this tutorial, we will go into how to order results based on a primary property, and then for results that have the same primary property, how to order that selection on a secondary property. As an alternative to ordering based on numerical values, the final example shows how to order based on a custom scoring profile. We will also go a bit deeper into the display of _complex types_.
1717

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: C# tutorial on autocomplete and suggestions
33
titleSuffix: Azure Cognitive Search
4-
description: This tutorial demonstrates autocomplete and suggestions as a way to collect search term input from users using dropdown list. It builds on an existing hotels project.
4+
description: Add autocomplete and suggestions to collect search term input from users using dropdown list. This tutorial builds on an existing hotels project.
55

66
manager: nitinme
77
author: HeidiSteen
@@ -11,7 +11,7 @@ ms.topic: tutorial
1111
ms.date: 04/15/2020
1212
---
1313

14-
# C# tutorial: Add autocomplete and suggestions - Azure Cognitive Search
14+
# Tutorial: Add autocomplete and suggestions using the .NET SDK
1515

1616
Learn how to implement autocomplete (typeahead queries and suggested documents) when a user starts typing into a search box. In this tutorial, we will show autocompleted queries and suggestion results separately, and then together. A user may only have to type two or three characters to locate all the results that are available.
1717

0 commit comments

Comments
 (0)