Create QR Codes with .NET
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,
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