Text and EMail Templates with Handlebars.NET
A frequent requirement in apps is the conversion of templates, e.g. for sending e-mails, for PDF templates or other text modules. There are many diff
A frequent requirement in apps is the conversion of templates, e.g. for sending e-mails, for PDF templates or other text modules. There are many diff
QR codes are a simple and very popular way of exchanging data and information - even in .NET. They have become part of everyday life. Unfortunately,
There are various ways to deploy an application, but Zip deployment is the variant that is recommended the most - regardless of whether you are using
With .NET 8, the System.ComponentModel.DataAnnotations Namespace has been revised and some new attributes have been added that have been requested by
A database entity represents an identifiable entry, often also things from the real world, which are to be stored and managed in the database. The pu
In C#, optional arguments are parameters in a method that have default values specified in the method's declaration. This means that when you call th
As has been the case for many releases, the .NET 8 team is spending a lot of development effort to improve the .NET Runtime in terms of performance.
Some APIs do not follow standards, ignore ISO8601 and return UnixTime. This is not nice, but can be easily fixed with a custom converter for System.T
A little more than three months ago, Microsoft integrated a new functionality into Visual Studio 2022: Build Acceleration. This mechanism, which can
I often see snippets in EF Core code reviews such as the following: dbContext.Users.Where( user => user.Id == id ); The query filter user => u
Unit testing is a type of software testing that is performed on the smallest unit of a software application, called a "unit". A unit can be
In many software architectures the problem exists that there are methods, which are specified a multiplicity of type-same parameters, whose meaning i
In the field of software development, data transformation plays a key role in ensuring that information flows seamlessly between different components
String formatting is a common task in software development and allows you to create dynamic and informative output. Traditional approaches such as st
Noch ein halbes Jahr bis zum Release von .NET 8 - Zeit sich anzuschauen, was wir neues erwarten dürfen. LTS Release .NET 8 ist erneut ein LTS-Release
Version numbers have always been a rather weird maintained matter under Windows; however, it became particularly bad with Windows 10, respectively 11
Azure Pipelines inherently provides the ability for PowerShell scripts to be defined and executed inline. - task: AzureCLI@2 displayName: Bicep app
System.Text.Json is currently the most modern way to handle Json files efficiently. Efficiency here also means that memory sparing files are read in.
Azure is an ecosystem full of constants, identifiers, IDs or role definitions. Unfortunately, ARM and Bicep do not provide as much support as they co
September last year, Microsoft announced that a large number of backend services would be migrated to .NET 6. This, they said, was an enterprise-wide
Structs have their advantages in .NET: they are especially efficient in the runtime if used correctly. But if you use structs with an interface, the
Both C# is null and == null are used to check if a variable or object is null, but they work slightly differently. is null checks if the variable or
Symbolic Links (often abbreviated as symlinks) are a type of file or folder shortcut in Windows that reference another file or folder in the file sys
The isolated mode of Azure Functions with .NET allows for greater control over the runtime environment and dependencies of the function. In this mode
Performance testing is a crucial step in ensuring that your website can handle high levels of traffic and provide a smooth user experience. One tool
Often there is a situation where you need to load several pieces of information from a database or table at the same time in order to display certain
With Visual Studio 17.5 Preview 3.0, Microsoft has introduced a new Spellchecker. The problem: apparently this is a remotely activatable feature, whi
MSSQL Live Query statistics are a valuable tool for software developers working with Microsoft SQL Server (MSSQL). These statistics provide informati
Statische Methoden in C# sind Methoden, die auf eine Klasse und nicht auf eine bestimmte Instanz einer Klasse angewendet werden. Sie können aufgerufe
.NET and C# (CSharp) are two closely related technologies, but they are not the same thing. Understanding the difference between the two can be confu
Using Add or AddAsync in Entity Framework Core can be a little confusing, especially for those new to working with databases and ORMs (Object-Relatio