Blog
Discover our latest posts
SQL Logging
A comprehensive logging solution for SQL Server stored procedures that provides structured logging with different severity levels, automatic calle...
.NET 9.0 - .NET Maui from Frame to Border
Since .NET 9 the compiler warns “Frame” is obsolete: “Frame is obsolete as of .NET 9. Please use Border instead.”. Well, u...
MSSQL Script: Move all LOG files in a DB
-- First, create a temporary table to store the file move operations
CREATE TABLE #LogFileChanges (
DatabaseName sysname,
LogicalFi...
Rename MSSQL schema
Unfortunately, this is not so easy. But there is a way.
First create the new schema:
create schema {newschema};
go
N...
Ionicons in .NET MAUI
In .NET Maui, we can easily use TTF.
Working with TTF in .NET Maui is a breeze. Just copy the True Type Font into the Fonts directory under...
Page 3 of 3