Skip to content

Commit ec441f9

Browse files
committed
metadata consistency pass
1 parent ace67b8 commit ec441f9

7 files changed

+17
-17
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 - Azure Cognitive Search
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ titleSuffix: Azure Cognitive Search
44
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.
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 facet 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-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Autocomplete and suggestions
2+
title: C# tutorial on autocomplete and suggestions
33
titleSuffix: Azure Cognitive Search
44
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.
55

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)