├── .gitignore ├── LICENSE.md ├── README.md ├── create-mvc-app ├── HotelDemoApp │ ├── HotelDemoApp.sln │ └── HotelDemoApp │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── HotelDemoApp.csproj │ │ ├── Models │ │ ├── Address.cs │ │ ├── ErrorViewModel.cs │ │ ├── Hotel.cs │ │ ├── Rooms.cs │ │ └── SearchData.cs │ │ ├── Program.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── azure-logo.png │ │ └── search.png │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map └── README.md ├── quickstart-agentic-retrieval ├── README.md ├── program.cs ├── quickstart.ipynb └── sample.env ├── quickstart-rag ├── QuickstartRag.sln ├── complex-query │ ├── AzureSearchRagComplexQuery.csproj │ └── Program.cs └── minimal-query │ ├── AzureSearchRagMinimalQuery.csproj │ └── Program.cs ├── quickstart-semantic-search ├── BuildIndex │ ├── BuildIndex.csproj │ └── Program.cs ├── QueryIndex │ ├── Program.cs │ └── QueryIndex.csproj ├── README.md └── quickstart-semantic-search.sln ├── quickstart-vector-search ├── VectorSearchCreatePopulateIndex │ ├── HotelData.json │ ├── Program.cs │ ├── VectorSearchCreatePopulateIndex.csproj │ └── appsettings.json ├── VectorSearchExamples │ ├── Program.cs │ ├── SearchExamples.cs │ ├── VectorSearchExamples.csproj │ └── appsettings.json ├── VectorSearchQuickstart.sln └── VectorSearchShared │ ├── Address.cs │ ├── Hotel.cs │ ├── Location.cs │ └── VectorSearchShared.csproj ├── quickstart ├── AzureSearchQuickstart │ ├── Address.Methods.cs │ ├── Address.cs │ ├── AzureSearchQuickstart.csproj │ ├── AzureSearchQuickstart.sln │ ├── Hotel.Methods.cs │ ├── Hotel.cs │ └── Program.cs └── README.md └── tutorial-ai-enrichment ├── README.md ├── tutorial-ai-enrichment.sln └── tutorial-ai-enrichment ├── DemoIndex.cs ├── Program.cs ├── appsettings.json └── tutorial-ai-enrichment.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/README.md -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp.sln -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/HotelDemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/HotelDemoApp.csproj -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Address.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Hotel.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Rooms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Models/Rooms.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Models/SearchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Models/SearchData.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Program.cs -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/appsettings.json -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/images/azure-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/images/azure-logo.png -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/images/search.png -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/HotelDemoApp/HotelDemoApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /create-mvc-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/create-mvc-app/README.md -------------------------------------------------------------------------------- /quickstart-agentic-retrieval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-agentic-retrieval/README.md -------------------------------------------------------------------------------- /quickstart-agentic-retrieval/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-agentic-retrieval/program.cs -------------------------------------------------------------------------------- /quickstart-agentic-retrieval/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-agentic-retrieval/quickstart.ipynb -------------------------------------------------------------------------------- /quickstart-agentic-retrieval/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-agentic-retrieval/sample.env -------------------------------------------------------------------------------- /quickstart-rag/QuickstartRag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-rag/QuickstartRag.sln -------------------------------------------------------------------------------- /quickstart-rag/complex-query/AzureSearchRagComplexQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-rag/complex-query/AzureSearchRagComplexQuery.csproj -------------------------------------------------------------------------------- /quickstart-rag/complex-query/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-rag/complex-query/Program.cs -------------------------------------------------------------------------------- /quickstart-rag/minimal-query/AzureSearchRagMinimalQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-rag/minimal-query/AzureSearchRagMinimalQuery.csproj -------------------------------------------------------------------------------- /quickstart-rag/minimal-query/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-rag/minimal-query/Program.cs -------------------------------------------------------------------------------- /quickstart-semantic-search/BuildIndex/BuildIndex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/BuildIndex/BuildIndex.csproj -------------------------------------------------------------------------------- /quickstart-semantic-search/BuildIndex/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/BuildIndex/Program.cs -------------------------------------------------------------------------------- /quickstart-semantic-search/QueryIndex/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/QueryIndex/Program.cs -------------------------------------------------------------------------------- /quickstart-semantic-search/QueryIndex/QueryIndex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/QueryIndex/QueryIndex.csproj -------------------------------------------------------------------------------- /quickstart-semantic-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/README.md -------------------------------------------------------------------------------- /quickstart-semantic-search/quickstart-semantic-search.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-semantic-search/quickstart-semantic-search.sln -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchCreatePopulateIndex/HotelData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchCreatePopulateIndex/HotelData.json -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchCreatePopulateIndex/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchCreatePopulateIndex/Program.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchCreatePopulateIndex/VectorSearchCreatePopulateIndex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchCreatePopulateIndex/VectorSearchCreatePopulateIndex.csproj -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchCreatePopulateIndex/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchCreatePopulateIndex/appsettings.json -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchExamples/Program.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchExamples/SearchExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchExamples/SearchExamples.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchExamples/VectorSearchExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchExamples/VectorSearchExamples.csproj -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchExamples/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchExamples/appsettings.json -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchQuickstart.sln -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchShared/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchShared/Address.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchShared/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchShared/Hotel.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchShared/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchShared/Location.cs -------------------------------------------------------------------------------- /quickstart-vector-search/VectorSearchShared/VectorSearchShared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart-vector-search/VectorSearchShared/VectorSearchShared.csproj -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/Address.Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/Address.Methods.cs -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/Address.cs -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/AzureSearchQuickstart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/AzureSearchQuickstart.csproj -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/AzureSearchQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/AzureSearchQuickstart.sln -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/Hotel.Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/Hotel.Methods.cs -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/Hotel.cs -------------------------------------------------------------------------------- /quickstart/AzureSearchQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/AzureSearchQuickstart/Program.cs -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/quickstart/README.md -------------------------------------------------------------------------------- /tutorial-ai-enrichment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/README.md -------------------------------------------------------------------------------- /tutorial-ai-enrichment/tutorial-ai-enrichment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/tutorial-ai-enrichment.sln -------------------------------------------------------------------------------- /tutorial-ai-enrichment/tutorial-ai-enrichment/DemoIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/tutorial-ai-enrichment/DemoIndex.cs -------------------------------------------------------------------------------- /tutorial-ai-enrichment/tutorial-ai-enrichment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/tutorial-ai-enrichment/Program.cs -------------------------------------------------------------------------------- /tutorial-ai-enrichment/tutorial-ai-enrichment/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/tutorial-ai-enrichment/appsettings.json -------------------------------------------------------------------------------- /tutorial-ai-enrichment/tutorial-ai-enrichment/tutorial-ai-enrichment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-search-dotnet-samples/HEAD/tutorial-ai-enrichment/tutorial-ai-enrichment/tutorial-ai-enrichment.csproj --------------------------------------------------------------------------------