.NET Naming Best Practises: Services vs. Providers
In many code bases there are Services and Providers - and often they do the same thing structurally; but what is the idea of a Service- and Provider-
In many code bases there are Services and Providers - and often they do the same thing structurally; but what is the idea of a Service- and Provider-
Database entities are the objects that represent the tables in your database. They are the objects that you use to read and write the database. Namin
Often seen, often used incorrectly: DTOs. Data Transfer Objects. In principle, DTO is an umbrella term, a design pattern that is used to transfer dat
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.