RabbitMQ in .Net Core
RabbitMQ is an open-source message broker. And it is probably one of the most widely used message brokers out there. In my experience, it is one of
RabbitMQ is an open-source message broker. And it is probably one of the most widely used message brokers out there. In my experience, it is one of
Configuration management is something we cannot do without. It is a must-have feature. In this blog post, I am going to discuss how to manage and
In this blog post, I am going to walk through how to run background tasks in ASP.Net Core Web applications using infrastructure and API provided by
SQLite is a small, fast, full-featured SQL database engine, that is written in C. And it runs in the same process as the application itself. It is
SQLite is a small, fast, full-featured SQL database engine, that is written in C. And it runs in the same process as the application itself. It is
I have been browsing around for finding a good alternative for Dapper. That is when I came across RepoDb. RepoDb is a Hybrid ORM framework, that
I have been browsing around for finding a good alternative for Dapper. That is when I came across RepoDb. RepoDb is a Hybrid ORM framework, that
In the age of cloud computing and agile development, continuous deployment is key to success in any product. But the main bottleneck comes with
One of the confusion I had when I initially started using IQueryable, was why do we have both IEnumerable and IQueryable. What is the difference
LINQ (Language-Integrated Query) was introduced in C# language with .Net Framework version 3.5. The main distinction that LINQ brings to the table,
We all know the importance of API documentation. But in most cases, the API documentation is outside of code, and that ends up creating discrepancies
In this blog post, I am going to cover Migrations in Entity Framework Core. This is the feature, in my opinion, that is extremely necessary for a
Health checks are a critical part of any distributed system. Especially in the era of microservices, it is extremely important to understand if the
A lot of times, we need to create applications that need some sort of time-based scheduling. Hangfire helps us right there. Hangfire provides a very
In this blog, I am going to cover Streaming and Authentication for gRPC services in ASP.Net Core. In my last blog post, I covered basic concepts of