When to Choose Microservices and When to Choose Monolithic Approach to Design an ApplicationJan 5, 2025·5 min read
Tackling Performance Issues Due to Logging in DotNetLogging is a lifesaver for debugging and monitoring in DotNet applications, but if not managed properly, it can drag down performance, especially in high-traffic scenarios. Let’s break down why logging can cause issues and how to fix them without bre...May 10, 2025·2 min read
Everything GraphQL + DotNet CoreWhy we need GraphQL? GraphQL is a query language for APIs which provides a more efficient and flexible alternative to REST. It was originally built by Facebook but it’s open-sourced and is maintained by a large community. To design web APIs, Restful ...Dec 31, 2024·4 min read
How to manage state in Dotnet core web APIIntroduction to problem statement For some cases it is required to maintain state in Web-API. But as per design principles, it is not a good practice to make a restful API stateful. In modern backend development, APIs are created as stateless because...Jan 10, 2024·3 min read