Monday June 29, 2020 1488
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 »
Wednesday June 24, 2020 2893
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..
Wednesday June 24, 2020 1712
JWT (JSON Web Token) is one of the popular and most used authentication and authorization mechanism in web development. The information exchanged via..
Monday June 22, 2020 4890
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..
Sunday June 21, 2020 1617
Documenting an API is an essential task. When consuming a Web API, understanding its various methods can be challenging for a developer. Swagger,..
Friday June 19, 2020 858
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..
Thursday June 11, 2020 913
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..
Thursday June 4, 2020 371
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..
Thursday June 4, 2020 652
What if you want to add additional parameter or field in the user identity table i.e. AspNetUser. We might need this one so lets look how we can..