New Data Annotation attributes with .NET 8
With .NET 8, the System.ComponentModel.DataAnnotations Namespace has been revised and some new attributes have been added that have been requested by
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
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
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
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
A full-text catalog in Microsoft SQL Server is a specialized storage that is used to store and manage full-text indexes for one or more tables in a d
Install EF Core 3 Migration tools The tooling of the Entity Framework Core Migrations comes via NuGet (and dotnet tooling). dotnet tool install --glo
This post covers the basic structure for unit tests with Entity Framework Core. Note: Unit tests are only there to test the respective logic. Unit t