
The Language Of Computers
TL;DR In today’s digital age, we interact with computers constantly, using them for everything from browsing the internet to sending emails to playing games. But have you ever wondered how these m...
TL;DR In today’s digital age, we interact with computers constantly, using them for everything from browsing the internet to sending emails to playing games. But have you ever wondered how these m...
TL;DR Sorry :( there are no shortcuts to becoming a software engineer, but I can tell you one thing, this post or any posts in this series do not guarantee a job, these posts are meant for people ...
TL;DR The Azure Cosmos DB SDK for .NET uses Newtonsoft.Json as the default serializer. However, we prefer System.Text.Json because it is more lightweight and performs better, and System.Text.Json ...
Greetings, coding community! Today, we’re delving into a topic that’s genuine and crucial for developers using the latest version of Moq. If you’re a .NET enthusiast who has been utilizing this wid...
Update 08.08.2023 After testing for a while, I found a few issues for example validation failed if we add more tokens to replace. so for fixing this, we need to tweak a few things in the policy. ...
You are aware of how challenging it may be to work with large files if you are developing a.NET application and using D365 Finance and operation EDMX or Metadata files to produce your classes. The ...
In this article, I will talk about automated database backup of Golden Configuration Environment or any tier 1 or 2 cloud-hosted environments. we will be using Azure DevOps and Azure storage for t...
ForAllOtherMembers was removed That was used to disable mapping by convention, not something we want to support. AutoMapper 11 came with a breaking change, which we all hate. I hope this blog pos...
In this blog post, I will explain how we can authenticate GCP or Firebase without storing JSON in your repository. TL/DR If you are just interested in code, you can just visit the GitHub reposito...
Updating an Azure Functions app from version 3 to version 4 involves a few steps. Here is a general outline of the process: Make a backup of your function app: Before you begin the up...