Azure OpenAI, API Design, and EF Core Costs
This issue covers Azure OpenAI apps, MCP deployment, .NET 10 REST guidance, Blazor dashboards, Serilog logging, LINQ efficiency, and EF Core pitfalls.
Jasen's top three picks
- 1 Building AI-Powered Support Engineers with Azure OpenAI and ASP.NET Core
c-sharpcorner.com
A practical Azure OpenAI build with real support-engineering framing, not just another chatbot demo.
- 2 Building an Inventory & Order Management System in ASP.NET Core (Setup & Core Features) Part 1
c-sharpcorner.com
Good starter architecture for a line-of-business ASP.NET Core app with familiar CRUD building blocks.
- 3 5 Hidden .NET Features Most Developers Still Aren’t Using (With Practical Examples)
blog.gopenai.com
These roundup-style feature posts vary, but they can still surface overlooked language and runtime capabilities.
Editor's note
I kept this one deliberately mixed, which is usually where the best practical reading shows up. The .NET 10 REST API guide stands out for its production-minded coverage of versioning, caching, and Problem Details, while the EF Core Include() piece is the kind of performance warning many teams learn too late. There’s also a notable AI thread here, from Azure OpenAI support workflows to MCP integration and deployment on Azure.
Today's articles
Building AI-Powered Support Engineers with Azure OpenAI and ASP.NET Core
c-sharpcorner.com
Build AI-powered support engineers with ASP.NET Core, Azure OpenAI, and Azure AI Search for faster resolutions and reduced costs.
Topics: ASP.NET Core Azure OpenAI
Read articleBuilding an Inventory & Order Management System in ASP.NET Core (Setup & Core Features) Part 1
c-sharpcorner.com
Build an ASP.NET Core Inventory & Order Management System. Part 1 covers project setup, core features like Product, Category, Supplier, and Customer CRUD.
Topics: ASP.NET Core ASP.NET MVC
Read article5 Hidden .NET Features Most Developers Still Aren’t Using (With Practical Examples)
blog.gopenai.com
When people talk about .NET, they usually focus on the big announcements — new C# syntax, performance improvements, or the latest… Continue reading on GoPenAI »
Read articleRESTful API Best Practices for .NET Developers (.NET 10) – The Complete 2026 Guide to Production-Ready APIs
codewithmukesh.com
Build production-grade REST APIs in .NET 10. Resource naming, HTTP methods, status codes, versioning, idempotency, RFC 9457 Problem Details, caching, and concurrency - done right.
Topics: .NET 10 REST API Web API
Read articleIntegrating AI with .NET Using the Official MCP C# SDK v1.0
medium.com
From .NET Services to AI-Callable Tools — A Practical Guide Continue reading on Simform Engineering »
Read articleDesign Patterns in C# — Real Enterprise Examples That Actually Work in Production
medium.com
Stop memorising UML diagrams. Start seeing patterns in the code you write every day.
Topics: C# Design Patterns
Read articleBuilding AI-Powered Knowledge Extraction Pipelines with ASP.NET Core
c-sharpcorner.com
Unlock insights from unstructured data with ASP.NET Core AI knowledge extraction pipelines. Transform documents into actionable knowledge.
Topics: ASP.NET Core OpenAI
Read articleBuilding AI-Enhanced Engineering Metrics Dashboards with Blazor
c-sharpcorner.com
Build AI-enhanced engineering metrics dashboards with Blazor & .NET. Gain predictive insights, detect anomalies, and improve software delivery.
Read articleHow to Programmatically Extract Text from a PDF using C# and a .NET PDF API
mesciusinc.medium.com
PDFs are great for preserving document layout, but extracting usable text from them can be a different story. Whether you are building a…
Topics: C#
Read article📖 Building a Web-Based Timesheet Management System in ASP.NET Core
c-sharpcorner.com
Build a robust ASP.NET Core MVC timesheet system with SQL Server. Features include entry, allocation, approvals, auth, reporting & deployment.
Topics: ASP.NET Core ASP.NET MVC SQL Server
Read articleFrom Local to Azure: Deploy Your MCP Server to Production
medium.com
One codebase. Real Azure data. One deployment target that actually makes sense. Continue reading on Microsoft Azure in Practice »
Read articleFive Modern C# Features Every .NET Developer Should Know
c-sharpcorner.com
Master modern C# features like primary constructors, field keyword, records, pattern matching, and required members for cleaner .NET development.
Read articleStop Wasting CPU Cycles: Where vs. TakeWhile in LINQ
medium.com
We have all been there: you are writing a LINQ query to filter a collection, and your fingers automatically type .Where(). It’s muscle…
Topics: C# Performance
Read articleThe Most Expensive 4 Lines of C# I’ve Ever Seen
medium.com
Six hours of downtime. 38,000 lost orders. Every dashboard green the entire time.
Topics: C# Performance
Read articleMigrating Agentic Code Python -> C# Part 4
jesseliberty.com
In the previous blog post we looked at the Blogger (orchestrator) code in C#. Let’s move on to some of the other agents. The Blogger invokes the Researcher, so let’s go there next. The Researcher clas...
Read articleSimplifying file logging in ASP.NET Core with Serilog
blog.elmah.io
Imagine a bug suddenly arises in the frontend from an endpoint. The endpoint has multiple layers and involves dozens of files. Now, you are tasked to resolve that bug, those piles of code make it diff...
Topics: ASP.NET Core Serilog
Read articleC#: What Is the Repository Pattern for Data Access with Entity Framework?
pietschsoft.com
If you spend enough time building C# applications, you eventually run into this question:
Topics: Design Patterns EF Core
Read articleThe Hidden Cost of Include() in EF Core
medium.com
Include() is one of the most useful features in EF Core. It’s also one of the easiest ways to accidentally hurt performance.
Topics: EF Core Performance
Read article