C# LINQ Gotcha: Where Did My Changes Go?

C# and LINQ have been together since C# 3.0. It makes working with data sources, both local and remote, a pleasant experience with its' functional-style approach. However, LINQ does have its' pitfalls in the form of unnecessary memory allocations and sub-par algorithmic performance in few cases. When writing abstractions on top of remote data access patterns, sometimes called the Data Access Layer, we might run into subtle bugs when using these abstractions in our application code....

September 24, 2021 · 4 min · Rohan Ankarigari Boda

/fizzbuzz Using ASP.NET Core

What is ASP.NET Core? From the official website, ASP.NET is a popular web-development framework for building web apps on the .NET platform. That’s ASP.NET, ASP.NET Core is the cross-platform, open source version of ASP.NET. ASP.NET Core is a fast and feature-rich web framework which leverages the open-source .NET Core (or .NET 5+) platform to deliver a rich development experience for building web applications of any scale. It is de facto web framework of choice in ....

May 30, 2021 · 6 min · Rohan Ankarigari Boda