How to Generate a Random Color Name in C#
In this article, we will learn how to generate a random color name using the KnownColor enumeration. This enum is particularly useful in UI design and data visualization, as it provides a wide variety of preset colors. An age-old question - which one is...
Generate Images in C# Using ImageSharp
In this article, we will learn about generating images in C# using ImageSharp. Let's get started. What is ImageSharp? ImageSharp...
Generate Images in C# Using ImageMagick
In this article, we will learn about generating images in C# using ImageMagick. Let's dive in. What is ImageMagick? ImageMagick...
Using Kafka in an ASP.NET Core Web API
At its core, Kafka is a distributed streaming platform designed to handle large volumes of data in real-time. Its exceptional performance, fault tolerance, and scalability make it a pivotal component in event-driven architectures. If you rely on Azure Blob in your projects, here's an excellent article by...
How to Create a Zip File in Memory In C#
In this article, we will look at how we create In-Memory Zip files in C#. Previously, we discussed how to create and read Zip files in .NET in our Working With Zip Files in C#/.NET article, so we recommend taking a look at that to familiarize yourself with working...
How to Show the Generated SQL Query in EF Core
Entity Framework Core has many useful features, and in this article, we will see how to use it to show a generated SQL query. EF Core is an open source Object-relational mapper that supports several databases like SQLite, PostgreSQL, MySQL, and also LINQ (Language...