Blazor Dynamic Component
Blazor is a joy when you know what you’re rendering—this typically involves knowing your types at compile time. But what happens when you want to render your components dynamically, when you don’t know your types ahead of time? You can do it in a variety of ways: you can iterate through components and use complex conditionals, use reflection, declare a bunch of RenderFragments, or even build your own render tree. It can get complicated when dealing with parameters and complex data graphs, and none of these solutions are any good, really.
Read more ...
New LINQ Methods
While the release of .NET 9 is planned for November 2024, the preview version is already available. One of the new .NET 9 features is the new LINQ methods: CountBy, AggregateBy and Index. In this article, I present how to use these methods.
Read more ...
New Relic on MAUI
Learn how to seamlessly integrate New Relic for comprehensive crash analytics in your .NET Maui applications and ensure optimal performance across Android and iOS platforms.
Read more ...
Real World MultiThreading .Net Apps
Applications may carry out numerous activities concurrently thanks to the strong multithreading approach used in software development, which enhances performance and responsiveness. Understanding and utilizing the power of multithreading may be a game-changer in the realm of .NET programming. We’ll examine practical instances of multithreading in .NET programs in this blog article, complete with C# code snippets.
Read more ...
Database Integration Tests in .NET with xUnit
In this article, you will learn about the purpose of integration testing, the problem it solves, and how it compares to other types of testing. By the end of this article, you will have learned everything you need to start writing integration tests in .NET. In our example, we will be testing a repository that uses Entity Framework with an underlying Postgres database. However, the same principles apply to any other database and ORM, even raw queries using something like Dapper.
Read more ...
Session Manager
If you want to implement an inactivity handler for MAUI platforms, please check this article
Read more ...
Long Polling in .Net
Polling is a simple way to provide near-real-time updates using HTTP requests. However, in many cases, it can result in many empty responses and wasted resources.
Read more ...
Creational Patterns - Abstract Factory
Creational design patterns provide various object creation mechanisms, which increase flexibility and reuse of existing code.
Read more ...
Azure Blob Storage File Management API
This article will explain the communication between Web API(.NET 7) and Azure Blob Storage for managing files.
Read more ...
Exploring Bot Composer
Nowadays chatbots are the most common tool to interact with some functions, like guide, suggest, act as FaQ or more complex capabilities like incorporate employees to intern apps on a certain company, so let's get into Bot Composer
Read more ...