Technical & DevelopmentIntermediate
azure-search-documents-dotnet
Full-text, vector, and hybrid search
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-search-documents-dotnetnpx skills add https://github.com/microsoft/skills --skill azure-search-documents-dotnetOr paste this URL into your assistant to install:
Overview
What This Skill Does
Azure.Search.Documents is the .NET SDK for Azure AI Search. It covers querying indexes with full-text, vector, semantic, and hybrid search, plus document CRUD and index management.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure.Search.Documents (.NET)
Build search applications with full-text, vector, semantic, and hybrid search capabilities.
Installation
dotnet add package Azure.Search.Documents
dotnet add package Azure.Identity
Current Versions: Stable v11.7.0, Preview v11.8.0-beta.1
Environment Variables
SEARCH_ENDPOINT=https://<search-service>.search.windows.net # Required: search service endpoint
SEARCH_INDEX_NAME=<index-name> # Required: search index name
AZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production
SEARCH_API_KEY=<api-key> # Only required for AzureKeyCredential auth
Authentication
Microsoft Entra Token Credential:
Lines 1 - 25 of 338
Recommendations