1 - Overview of adding search to a website with .NET

This tutorial builds a website to search through a catalog of books and then deploys the website to an Azure Static Web App.

What does the sample do?

This sample website provides access to a catalog of 10,000 books. A user can search the catalog by entering text in the search bar. While the user enters text, the website uses the search index's suggest feature to complete the text. Once the query finishes, the list of books is displayed with a portion of the details. A user can select a book to see all the details, stored in the search index, of the book.

Screenshot of the sample app in a browser window.

The search experience includes:

  • Search – provides search functionality for the application.
  • Suggest – provides suggestions as the user is typing in the search bar.
  • Facets and filters - provides a faceted navigation structure that filters by author or language.
  • Paginated results - provides paging controls for scrolling through results.
  • Document Lookup – looks up a document by ID to retrieve all of its contents for the details page.

How is the sample organized?

The sample code includes the following:

App Purpose GitHub
Repository
Location
Client React app (presentation layer) to display books, with search. It calls the Azure Function app. /search-website-functions-v4/client
Server Azure .NET Function app (business layer) - calls the Azure AI Search API using .NET SDK /search-website-functions-v4/api
Bulk insert .NET file to create the index and add documents to it. /search-website-functions-v4/bulk-insert

Set up your development environment

Install the following for your local development environment.

Fork and clone the search sample with git

Forking the sample repository is critical to be able to deploy the Static Web App. The web apps determine the build actions and deployment content based on your own GitHub fork location. Code execution in the Static Web App is remote, with Azure Static Web Apps reading from the code in your forked sample.

  1. On GitHub, fork the sample repository.

    Complete the fork process in your web browser with your GitHub account. This tutorial uses your fork as part of the deployment to an Azure Static Web App.

  2. At a Bash terminal, download your forked sample application to your local computer.

    Replace YOUR-GITHUB-ALIAS with your GitHub alias.

    git clone https://github.com/YOUR-GITHUB-ALIAS/azure-search-dotnet-samples
    
  3. At the same Bash terminal, go into your forked repository for this website search example:

    cd azure-search-dotnet-samples
    
  4. Use the Visual Studio Code command, code . to open your forked repository. The remaining tasks are accomplished from Visual Studio Code, unless specified.

    code .
    

Create a resource group for your Azure resources

  1. In Visual Studio Code, open the Activity bar, and select the Azure icon.

  2. Sign in to Azure, if you aren't already signed in.

  3. In the Resources section, select Add (+), and then select Create Resource Group.

    Screenshot of Visual Studio Code, in Azure explorer, showing **Create Resource Group** option.

  4. Enter a resource group name, such as cognitive-search-demo-rg.

  5. Enter a region:

    • For Node.js, select West US 2. This is the recommended region for the Azure Function programming model (PM) v4 preview.
    • For C# and Python, we recommend the following regions, supported by Azure Static Web Apps as of this writing: West US 2, East US 2, West Europe, Central US, East Asia

Use this resource group for all resources created during this tutorial. A resource group gives you a logical unit to manage the resources, including deleting them when you're finished.

Next steps