Fetching Ticket Details from Freshdesk using C# and Displaying in a .NET

Introduction  Hi everyone! I’m currently doing my internship where I got an opportunity to work with the Freshdesk API. As someone who’s just starting out, I wanted to share how I was able to fetch ticket details from Freshdesk using C# and display them in a simple .NET front-end.  If you’re also new to APIs or […]

Importing Excel Data to SQL Server using ASP.NET Core 8

Introduction Importing data from Excel into a SQL Server database is a common task in many applications. Whether you are dealing with small datasets or large volumes of data, understanding the different methods available for this task can help you choose the most efficient and effective approach for your needs. In this blog post, we […]

Understanding IBackgroundService and IHostedService in .NET

In modern .NET applications, background processing is a common requirement. Whether it’s running periodic tasks, processing messages from a queue, or performing long-running operations, the .NET framework provides robust solutions to manage these scenarios efficiently. Two essential interfaces for background processing in .NET are IBackgroundService and IHostedService. In this blog post, we’ll dive into these […]

Implementing Azure Service Bus Topic in a .NET Function App

In this blog we are going to see about Implementing Azure Service Bus Topic in a .NET Function App. Azure Service Bus is a robust messaging service on Azure that enables applications to communicate with each other in a decoupled manner. When dealing with complex scenarios that require high scalability and fault tolerance, Service Bus […]

A Comprehensive Guide for Documenting Your ASP.NET Core Web API with Swagger Tools

This guide walks you through the process of documenting your ASP.NET Core Web API using Swagger tools. From setup to advanced configurations, learn how to leverage Swagger to create detailed and interactive API documentation for your ASP.NET Core projects. What is OpenAPI? OpenAPI is a specification used for describing REST APIs. It’s language agnostic, and […]