2026-07-19 ef-coredotnetcsharp How to log the SQL that EF Core 11 generates See the exact SQL Entity Framework Core 11 sends to your database, with parameter values, using LogTo, Microsoft.Extensions.Logging, and ToQueryString.
2026-07-19 dotnet-11mauicoreclr MAUI Mobile Is CoreCLR Only in .NET 11 Preview 6: The Mono Escape Hatch Is Gone .NET 11 Preview 6 removes the separate Mono path for MAUI on Android, iOS, and Mac Catalyst. CoreCLR is now the only mobile runtime, the UseMonoRuntime escape hatch is closed, and GA is set for November 2026.
2026-07-18 dotnet-11csharpcsharp-15 C# 15 Extension Indexers Round Out Extension Members in .NET 11 Preview 6 Extension indexers landed in .NET 11 Preview 6, letting you add this[...] access to types you do not own. They complete the extension members story that started with methods and properties in C# 14.
2026-07-18 errorsflutterdart Fix: ScaffoldMessenger.of() was called with a context that does not contain a Scaffold (Flutter) This error means the BuildContext you passed is above the Scaffold or ScaffoldMessenger, not below it. Wrap the caller in a Builder, extract it into its own widget, or use a GlobalKey.
2026-07-18 errorsdartflutter Fix: type 'Null' is not a subtype of type 'X' in Dart This runtime error means a null reached a cast expecting a non-nullable type, almost always from JSON. Make the field nullable, or supply a default before the cast runs.
2026-07-18 microsoft-agent-frameworkagent-skillsai-agents How to Package Reusable Domain Expertise as an Agent Skill in .NET with the Microsoft Agent Framework There is no single Skill type in the Microsoft Agent Framework, but you can package domain expertise as a reusable agent, reuse it in-process with AsAIFunction, and advertise it across frameworks as an A2A AgentSkill. Full walkthrough on Agent Framework 1.0 and .NET 11.
2026-07-17 aspnetcoredotnet-11security ASP.NET Core 11 Preview 6 turns on automatic CSRF protection Preview 6 rejects unsafe cross-origin browser requests by default, reading the Sec-Fetch-Site header instead of an antiforgery token. Here is what it blocks and how to opt out.
2026-07-17 errorsdotnetdotnet-11 Fix: "413 Request Entity Too Large" when uploading a file to an ASP.NET Core endpoint Kestrel caps request bodies at 30,000,000 bytes by default and returns 413 when you exceed it. Raise MaxRequestBodySize globally, per endpoint, or in web.config behind IIS.
2026-07-17 errorsmcpclaude-code Fix: all MCP servers fail to load after one malformed-JSON syntax error in the config One trailing comma or unescaped Windows path in your MCP config makes every server vanish, not just the broken one. Validate the JSON, fix the five usual suspects, restart.
2026-07-17 errorscsharpdotnet Fix: System.InvalidOperationException: Headers are read-only, response has already started You set a header, status code, or content type after the body was already flushed. Set all headers before the first write, or guard with HttpResponse.HasStarted and OnStarting.