Code Maze Author

Ryan Miranda

Ryan is a tech enthusiast with over 15 years of diverse experience spanning various industries, team sizes, and project approaches. His focus is on big picture thinking, leading high performing engineering teams, and being an ambassador for technology to other business executives, effectively bridging the realms of technology and business.
Also find me here:


MY ARTICLES:

Monolith and Distributed Monolith Architectural Patterns in C#

In this article, we are going to discuss the monolith and distributed monolith architectural patterns. We'll cover what the patterns are, how to implement them in C#, and why we should use them over some other alternatives such as microservices. Let's start with a...

Discriminated Unions in C# With OneOf

In this article, we will look at the usage of discriminated unions in C#, specifically with the open-source library OneOf. We'll go into some practical examples and why this pattern is becoming increasingly popular in .NET applications today. public int Id { get; set; }     [MaxLength(100)] public string Name { get;...