First off, let’s create an ASP.NET Core 7 project in Visual Studio 2022. Follow these steps: We’ll use this ASP.NET Core 7 Web API project to work with advanced features of Dapper in the sections ...
Take advantage of parameter binding in ASP.NET Core 7 to convert request data to strongly typed parameters, improving both application performance and code maintainability. Minimal APIs are a type of ...
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 ...
In earlier posts, I've discussed how to authorize a user declaratively both in ASP.NET Core and Blazor using the Authorize attribute, among other tools (and I've also referenced Eric Vogel's posts on ...