SQL Logging

A comprehensive logging solution for SQL Server stored procedures that provides structured logging with different severity levels, automatic caller detection, and detailed error tracking. Features Installation — Create Logger schema CREATE SCHEMA Logger; GO — Create logging table and procedures — [Copy the full installation script here] Basic Usage Simple Logging — Info logging EXEC … Read more

.NET 9.0 – .NET Maui from Frame to Border

SQL Beispiele

Since .NET 9 the compiler warns “Frame” is obsolete: “Frame is obsolete as of .NET 9. Please use Border instead.”.Well, unfortunately, it is not possible to simply replace Frame with Border. Frame was somehow a little easier to use. Simply make a frame with rounded corners.That’s not “out-of-the-box” with Border.So let’s take a look at … Read more

As a little finger exercise, I thought that a Visual Studio extension that explains the code would be good – thanks to OpenAI, that shouldn’t be a problem. And it wasn’t. First, I installed the Extensibilty Template Pack 2022 for Visual Studio 2022.Then I could get started: Firstly, I added a tool window. A tool … Read more