I come across the following warning during working on one of my projects. I looked at the internet and it seems this is very common so I thought I’ll add…
.net core
Sometimes we come across a requirement to get list of methods in C# class. This is very useful if you want to automate your documentation process and want to have…
As a developer lot of time, you come across ” Object reference not set to an instance of an object ” error and sometimes along with the yellow screen of…
Azure function apps are the perfect example of the KISS principle (Keep it stupid simple). In very simplest terms Azure Function is a piece of code you run based on…
Authentication and authorization might sound similar but there is a very subtle difference between these two terms. Authentication is just confirmation of user identity. Such as we know about this…
In this blog post, we will explore how we can access FTP server and how we can download a file or complete folder based on access rights. Once files or…
This article shows how you can read nested and complex large XML file using XmlReader. few benefits of using XmlReader XmlReader reads data in a forward-only and read-only fashion. That’s…
A lot of times we come across a requirement to bulk insert data in SQL server. Now there are several ways to bulk insert data in SQL server table but…
Recently I come across a requirement to create .NET Core Web API using JWT (JSON Web Token) authentication. I have used ASP.NET identity to provide a role-based authentication model. I…
This article explains how to add images to Azure blob storage containers using C# .NET Core. The Complete code can be downloaded from the following GitHub repository Before starting please…