atlas news
    
Ezzy Learning
01  février     18h05
Maintain Clean Architecture Rules with Architecture Tests
Waqas Anwar    In a large-scale application, maintaining a well-structured codebase is crucial for scalability, maintainability, and long-term success. Over time, as teams grow and features evolve, the violations of architectural rules can creep in, leading to tightly coupled, hard-to-maintain code. This is where...
29  décembre     10h05
Getting Started with OpenTelemetry in ASP.NET Core
Waqas Anwar    In today’s world of microservices and distributed systems, understanding the flow of requests across multiple components is crucial for maintaining application performance and reliability. An open-source observability framework called OpenTelemetry has emerged as a powerful tool to address this...
24  décembre     17h16
Implementing Problem Details in ASP.NET Core APIs
Waqas Anwar    One of the most overlooked aspects when building APIs is how they communicate errors. A well-designed API informs consumers effectively when something goes wrong. Consistent error responses are not just a best practice but a necessity. They help developers troubleshoot issues faster, provide a...
25  août     17h52
Implement Features Management in ASP.NET Core Apps
Waqas Anwar    In this article, we will learn what feature flags are and how to use these feature flags in an ASP.NET Core application. We will also explore how we can use the built-in feature filters to enable or disable features of an ASP.NET Core application. The post Implement Features Management in ASP.NET...
15  août     09h03
12 Common Mistakes in Implementing Clean Architecture
Waqas Anwar    Clean Architecture is introduced by Robert C. Martin (also known as Uncle Bob) in 2012 and it has gained popularity in recent years. The aim of clean architecture is to create maintainable, scalable, and flexible software systems. While it provides a solid foundation for building complex...
12  août     18h17
Dockerize ASP.NET Core API and SQL Server
Waqas Anwar    In my previous two posts, Complete Guide to Docker and ASP.NET Core and Build and Run ASP.NET Core Apps in Containers, we learned the basics of Docker, Dockerfile, Docker images, and containerization and also learned how to containerize ASP.NET Core Apps using Dockerfile. We haven’t used any...
04  août     18h06
Building Blazor WebAssembly Apps with Clean Architecture
Waqas Anwar    In one of my recent posts Building Blazor Server Apps with Clean Architecture, I demonstrated how to implement the clean architecture in Blazor server apps using CQRS, Mediatr, Entity Framework Core, and repository patterns. In this tutorial, we will learn how to implement clean architecture in...
01  août     17h50
Azure Functions Use Cases (Infographic)
Waqas Anwar    The post Azure Functions Use Cases (Infographic) appeared first on EzzyLearning.net.
28  juillet     18h28
Build and Run ASP.NET Core Apps in Containers
Waqas Anwar    In my previous post Complete Guide to Docker and ASP.NET Core, I gave you an overview of Docker Images and Containers and we learned how to dockerize both new and existing ASP.NET Core Apps using Dockerfile. In this tutorial, we will learn how to build Docker Images and Containers using Dockerfile...
22  juillet     10h05
Complete Guide to Docker and ASP.NET Core
Waqas Anwar    Containers have exploded in popularity since the introduction of Docker in 2013. Many companies have already integrated containers into their workflows to make it easier to deploy, distribute, manage, and scale their software. In this article, I will give you an overview of containers and...