An Enthusiastic Programmer

Asp.Net Core Identity

|

asp.net core identity help you manage user,password, profile data,roles, claims,email confirmation etc…

Authentication And Authorization

|

asp.net core security and identity,authentication,authorization,identityserver.

Authentication And Authorization Basics

|

asp.net core security and identity,authentication,authorization,identityserver.

Security & Identity

|

asp.net core security and identity,authentication,authorization,identityserver.

Add Custom Middleware

|

How to add custom middleware, how to use avoid common mistakes when use DI in your custom middleware.

Middleware

|

As our previous episodes, we have known that ConfigureService is a place we can register our service. So, where is the place to register middleware

Middleware Tutorial

|

ASP.NET Core introduced a new feature called as Middleware. Middleware is a software that assembled a set of applications, which will be going through on each request. In other words, it’s a layer that each incoming and outgoing request will go through it.

Understanding built-in IoC container

|

Dependency Injection

|

ASP.NET Core supports dependency injection(DI), which is a technique for achieving Inverse of Control(IoC). The Built-In IoC container doesn’t provide as many features as other third libraries

Dependency Injection Tutorial

|

.NET Core is designed from scratch to support dependency injection, which is also one of the principal features.