Azure Search-Create Index
This is the second post in the series of implementing Azure search. In previous post I described what Azure search is and how can implement it. As discussed in previous post, implementation of Azure search is four step job. Provision Service Create Index Load Data Finally Search. Let's get started. Create Index You can create index from portal as well as code. In this post I will be using the code to create the index and also give the overview to create index from the portal. Overview from portal Let's go ahead and click on Add Index button on overview screen. Here you will see Name of the Index Fields: You can insert as many fields as you want. You can also select whether it should be searchable, sortable, filterable, etc.. From Code For this demo I will be using VS 2017 Go ahead and create a .NET core MVC product using visual studio. Install Microsoft.Azure.Search nuget package. From portal Copy the Name of the Azu...