AI engineer and solution architect in Sydney. Agents, MCP, RAG, Azure, .NET, EV charging. I write about what breaks after go-live.
Similar Posts
Building a Config-Driven API Facade on Azure Functions
The first time a partner changes a request field from orderId to externalOrderId, you learn whether you have an edge or a tangle. If five projects each map that field in their own controllers, you get…
Unlocking C# 14: Practical New Features with Real-World Code Examples
C# 14 is more than just an incremental update—it’s a leap toward expressive, safe, and efficient coding. Whether you’re refactoring business logic or fine-tuning performance, these new features can make your codebase cleaner and easier to…
Telerik SL Gridview Cell Foreground color dynamically based on multiple binding
I had a problem before where I build dynamic system (light dataset) for doing CRUD (Create, Read, Update and Delete) and I need to store the history of previous record before Update/Delete and at the same…
How to Debug WCF Service Issue?
1. Change the app.config/web.config of your application that calls the WCF service by adding System.diagnostics detail as below Code Snippet <system.diagnostics> <sources> <source name=”System.ServiceModel” switchValue=”Verbose,ActivityTracing” propagateActivity=”true”> <listeners> <add type=”System.Diagnostics.DefaultTraceListener” name=”Default”> <filter type=”” /> </add> <add name=”ServiceModelTraceListener”>…
File Stream/Stream response in AJAX Update Panel
Last few months, I got a problem to place a button to generate a CSV file in the update panel. I was having a problem related with response error. So what i did was to place…
Dynamic Deserialization using JsonConverter
This post is the continuation from the previous post. The previous post was in regard to casting the object dynamically. This post will explain how to deserialize dynamically from Json object I have a json that…