Skip to content

Commit 043a0eb

Browse files
authored
Merge pull request #113748 from HeidiSteen/heidist-master
[azure search] metadata pass
2 parents 030266b + 837e911 commit 043a0eb

8 files changed

+24
-24
lines changed

articles/search/cognitive-search-tutorial-blob-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Tutorial: C# and AI over Azure blobs'
2+
title: C# tutorial using AI on Azure blobs
33
titleSuffix: Azure Cognitive Search
44
description: Step through an example of text extraction and natural language processing over content in Blob storage using C# and the Azure Cognitive Search .NET SDK.
55

@@ -11,7 +11,7 @@ ms.topic: tutorial
1111
ms.date: 02/27/2020
1212
---
1313

14-
# Tutorial: Use C# and AI to generate searchable content from Azure blobs
14+
# Tutorial: AI-generated searchable content from Azure blobs using the .NET SDK
1515

1616
If you have unstructured text or images in Azure Blob storage, an [AI enrichment pipeline](cognitive-search-concept-intro.md) can extract information and create new content that is useful for full-text search or knowledge mining scenarios. In this C# tutorial, apply Optical Character Recognition (OCR) on images and perform natural language processing to create new fields that you can leverage in queries, facets, and filters.
1717

articles/search/search-indexer-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Tutorial: Index data from Azure SQL databases in C# '
2+
title: C# tutorial indexing Azure SQL data
33
titleSuffix: Azure Cognitive Search
44
description: In this C# tutorial, connect to Azure SQL database, extract searchable data, and load it into an Azure Cognitive Search index.
55

@@ -12,7 +12,7 @@ ms.date: 02/28/2020
1212
#Customer intent: As a developer, I want an introduction the indexing Azure SQL data for Azure Cognitive Search.
1313
---
1414

15-
# Tutorial: Use C# to index data from SQL databases in Azure Cognitive Search
15+
# Tutorial: Index Azure SQL data using the .NET SDK
1616

1717
Configure an [indexer](search-indexer-overview.md) to extract searchable data from Azure SQL database, sending it to a search index in Azure Cognitive Search.
1818

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ titleSuffix: Azure Cognitive Search
44
description: Learn how to build your first C# search app step-by-step. The tutorial provides both a link to a working app on GitHub, and the complete process to build the app from scratch. Learn about the essential components of Azure Cognitive Search.
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: Create your first app - 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
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
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: Use facets to aid navigation - Azure Cognitive Search
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-paging.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 search results pagination
33
titleSuffix: Azure Cognitive Search
4-
description: This tutorial demonstrates paging of search results. It builds on an existing hotels project, with paging by first, next, previous, last, and numbered buttons. A second paging system uses infinite scrolling, triggered by moving a vertical scroll bar to its lower limit.
4+
description: Add pagination and navigation buttons to search results, building on an existing hotels project to add first, next, previous, last, and numbered buttons. A second paging system uses infinite scrolling, triggered by moving a vertical scroll bar to its lower limit.
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: Search results pagination - Azure Cognitive Search
14+
# Tutorial: Add paging to search results using the .NET SDK
1515

1616
Learn how to implement two different paging systems, the first based on page numbers and the second on infinite scrolling. Both systems of paging are widely used, and selecting the right one depends on the user experience you would like with the results. This tutorial builds the paging systems into the project created in the [C# Tutorial: Create your first app - Azure Cognitive Search](tutorial-csharp-create-first-app.md) tutorial.
1717

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Autocomplete and suggestions
2+
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

articles/search/tutorial-multiple-data-sources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'C# Tutorial: Index multiple data sources'
2+
title: C# tutorial indexing multiple Azure data sources
33
titleSuffix: Azure Cognitive Search
44
description: Learn how to import data from multiple data sources into a single Azure Cognitive Search index using indexers. This tutorial and sample code are in C#.
55

@@ -11,7 +11,7 @@ ms.topic: tutorial
1111
ms.date: 02/28/2020
1212
---
1313

14-
# Tutorial: Index data from multiple data sources in C#
14+
# Tutorial: Index from multiple data sources using the .NET SDK
1515

1616
Azure Cognitive Search can import, analyze, and index data from multiple data sources into a single consolidate search index. This supports situations where structured data is aggregated with less-structured or even plain text data from other sources, like text, HTML, or JSON documents.
1717

0 commit comments

Comments
 (0)