Entity Framework 3 - Migrations

Entity Framework 3 - Migrations

Install EF Core 3 Migration tools The tooling of the Entity Framework Core Migrations comes via NuGet (and dotnet tooling). dotnet tool install --glo

Custom PasswordHasher in ASP.NET Core Identity

Custom PasswordHasher in ASP.NET Core Identity

In the ASP.NET Core Identity environment, the PasswordHasher is responsible for securely storing the password and performing password entry checks. I

Unit Testing with Entity Framework Core 3

Unit Testing with Entity Framework Core 3

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

Custom Model Binders in ASP.NET Core

Custom Model Binders in ASP.NET Core

What are Model Binders? ModelBinders are required in ASP.NET Core to pass parameters from HTTP requests into a controller action method. For example,