Skip to content

Getting started

Niko Kovačič edited this page Sep 30, 2018 · 1 revision

How do I use AzureSearchToolkit?

As with most open source libraries for .NET, AzureSearchToolkit binaries are available via NuGet. Just install the package AzureSearchToolkit into your project. Currently .NET Standard 2.0 and later is supported.

To get started you will need an Azure subscription and Azure Search which you can both get for free.

Connection and Context

To start, you will need to create the connection object which instructs AzureSearchToolkit how to connect to your Azure Search instance:

var connection = new AzureSearchConnection("<search_instance_name>", "<search_key>"));

Clone this wiki locally