Take advantage of query types in EF Core to query types that don’t have keys and to map to tables and views that lack an identity column. Entity Framework Core (EF Core for short) is a popular ORM ...
Microsoft’s November release of .NET 8 brought all kinds of great new features. One of the nice improvements introduced in ASP.NET Core 8 is IExceptionHandler, an interface that makes it easier to ...
The reality is that you will need to have, at least, two different configurations: one for production and one for development. Here's how to automate those conversions. The reality is that our ...
When you need to integrate authorization with procedural code, you're going to need your application's ClaimsPrincipal object so that you can check the user's authorization claims. Here's both how to ...