Adding Google Authentication In .Net Core Application Without Identity The Basics

Friday May 28, 2021 7067

Having a flexibility of creating a login logic can have many benefits to enjoy your self logic on to the application for authorization. So today here..

Read More »

Using AutoFac On ASP.Net 5 (A Thirdparty Inversion of Control Container)

Wednesday April 21, 2021 1838

.Net Core does ships with a built-in dependency injection framework. But there is a certain limitation with it so most of the developers prefer a..

Read More »

Entity Framework Core For Beginners In Asp.Net Core – Code First Approach

Monday June 29, 2020 3591

What is Orm? Object-Relational Mapper (ORM) is a technique that lets you query and manipulates data from a database using an object-oriented..

Read More »

Role Based Authorization Using Jwt Token In Asp.Net Core Web Api

Wednesday June 24, 2020 5506

My previous post described how we can authenticate a web API method using JWT. The post is the continuation of my previous post  JWT Authentication..

Read More »

JWT Authentication In Asp.Net Core Web Api

Wednesday June 24, 2020 3370

JWT (JSON Web Token) is one of the popular and most used authentication and authorization mechanism in web development. The information exchanged via..

Read More »

Customize Swagger UI With Custom Logo And Theme Color

Monday June 22, 2020 20182

In my previous post, we discussed on how to Document an Asp.Net Core API with OpenApi/Swagger In Details but what if you want to change the default..

Read More »

Documenting an ASP.NET Core API with OpenAPI / Swagger In Detail

Sunday June 21, 2020 4251

Documenting an API is an essential task. When consuming a Web API, understanding its various methods can be challenging for a developer. Swagger,..

Read More »

Add Extra Field To Serilog For Effective Log Analysis And Debugging In Asp.Net Core

Friday June 19, 2020 5797

On the previous blog, we added serilog for our .net core application. But sometimes we may require to add some custom fields to be more precise for..

Read More »

Implementing Serilog With Seq For Log Monitoring In Asp.Net Core

Thursday June 11, 2020 2712

Debugging an application while it is in a development environment or a production environment is always a tedious job. Also to get the exact error..

Read More »

ASP.NET Core Identity Tables Customization (Identity Table Renaming)

Thursday June 4, 2020 2768

When we start a .net core application using Asp.Net Core Identity once we complete our first migration and update it will create some table with..

Read More »