Learn Azure AI Search with C# — index data, run vector and hybrid queries, and add RAG to your .NET app. Start building intelligent search today. If your application's search box still runs a LIKE '%term%' query against SQL Server, your users are quietly suffering. They type "cheap laptop for uni" and get zero results because your catalogue says "affordable notebook for students." Azure AI Search with C# fixes exactly this problem: it combines classic keyword search, vector embeddings, and semantic reranking into a single managed service that you can drive from .NET with a few dozen lines of code. In this tutorial you'll build a working search index from scratch, run keyword, vector, and hybrid queries, and finish with a Retrieval Augmented Generation (RAG) pattern that grounds an LLM in your own data. This guide targets .NET 9 and the Azure.Search.Documents v11 SDK. Every snippet is runnable. We'll explain why each design choice matter...
Learn natural language processing in C# with ML.NET — sentiment analysis, text classification, BERT and tokenizers. Copy the runnable code and ship today. If you have ever been told that serious machine learning only happens in Python, this guide is the counter-argument. Natural language processing in C# is a first-class scenario thanks to ML.NET, Microsoft's open-source ML framework that runs natively on .NET 8 and .NET 9. You can train a sentiment classifier, ship a multiclass support-ticket router, or run a BERT-family transformer — all inside the same solution as your ASP.NET Core API, with no Python runtime, no interop bridge, and no separate deployment pipeline. This complete guide walks through classical text featurization, deep-learning text classification, tokenization, embeddings, and the production pitfalls that bite teams six months in. Every code sample is runnable. Why Do NLP in C# Instead of Python? The honest answer: sometimes you shouldn't. If you ne...