https://github.com/damienbod/AspNetCoreAzureAISearch
ASP.NET Core with Azure AI Search
https://github.com/damienbod/AspNetCoreAzureAISearch
aspnet-core aspnetcore azure-ai-search azure-cognitive-search azure-search dotnetcore full-search-search paging razor
Last synced: 3 months ago
JSON representation
ASP.NET Core with Azure AI Search
- Host: GitHub
- URL: https://github.com/damienbod/AspNetCoreAzureAISearch
- Owner: damienbod
- License: mit
- Created: 2020-10-11T13:30:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T14:07:38.000Z (6 months ago)
- Last Synced: 2025-02-23T21:42:34.869Z (3 months ago)
- Topics: aspnet-core, aspnetcore, azure-ai-search, azure-cognitive-search, azure-search, dotnetcore, full-search-search, paging, razor
- Language: C#
- Homepage: https://damienbod.com/2020/10/19/implement-a-full-text-search-using-azure-cognitive-search-in-asp-net-core/
- Size: 2.25 MB
- Stars: 14
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASP.NET Core with Azure AI Search
[](https://github.com/damienbod/AspNetCoreAzureSearch/actions/workflows/dotnet.yml)
## Blogs
- [Implement a full text search using Azure AI Search in ASP.NET Core](https://damienbod.com/2020/10/19/implement-a-full-text-search-using-azure-cognitive-search-in-asp-net-core/)
- [Using Azure Cognitive Search Suggesters in ASP.NET Core and Autocomplete](https://damienbod.com/2020/10/29/using-azure-cognitive-search-suggesters-in-asp-net-core-and-autocomplete/)
- [Implement a Blazor full text search using Azure AI Search](https://damienbod.com/2020/11/02/implement-a-blazor-full-text-search-using-azure-cognitive-search/)## User secrets, Key vault configuration
```
{
"PersonCitiesSearchUri": "--url--",
"PersonCitiesSearchApiKey": "--secret--",
"PersonCitiesIndexName": "personcities"
}
```## History
- 2024-11-15 .NET 9
- 2024-11-02 Update packages, rename to Azure AI Search
- 2024-01-14 .NET 8
- 2023-11-03 Updated packages
- 2023-04-29 Updated packages, .NET 7
- 2022-01-18 Updated packages
- 2021-11-28 Updated to .NET 6
- 2021-08-20 Updated packages
- 2021-04-14 Updated packages
- 2021-02-18 Updated packages# Links
https://docs.microsoft.com/en-us/azure/search
https://docs.microsoft.com/en-us/azure/search/search-what-is-azure-search
https://docs.microsoft.com/en-us/rest/api/searchservice/
https://github.com/Azure-Samples/azure-search-dotnet-samples/
https://channel9.msdn.com/Shows/AI-Show/Azure-Cognitive-Search-Deep-Dive-with-Debug-Sessions
https://channel9.msdn.com/Shows/AI-Show/Azure-Cognitive-Search-Whats-new-in-security
https://docs.microsoft.com/en-us/azure/search/search-autocomplete-tutorial