News

Knowing the architecture for ASP.NET Core 2.1 Web API solutions may help broaden your understanding. The solution and all code from this article’s examples can be found in my GitHub repository.
Beginning with ASP.NET Core 3.0, you also have the option of returning IAsyncEnumerable from an action method. While IEnumerable performs a synchronous collection iteration, IAsyncEnumerable does ...
Create a minimal Web API project in Visual Studio 2022 First off, let’s create an ASP.NET Core project in Visual Studio 2022. Follow these steps: ...
ASP.NET Core is a fast, lean framework from Microsoft that can be used to build applications that can run on multiple platforms: Windows, Linux and MacOS. This free, modular and high-performance ...
Web developers looking for a performance boost in ASP.NET 7 Web API projects can pick some low-hanging fruit by using caching. Caching is used to store frequently used data or information in local ...