.NET Core
Why is ASP.NET Core good for Enterprise applications
Speed ASP.NET Core is by far the fastest full-stack major web framework out there. Full-stack, meaning a framework that provides wide feature coverage, including server-side templates, database connectivity, form processing, and so on. Major means it’s widely adopted, used by the community, and supported by a big company and/or community.
More C# 7 goodness - Span of T - Span<T>
Introduction With C# 7.2 we got a new type: Span. So, what is Span? Span is a new value type that enables us to work and manage any type that represents a contiguous chunk of memory.
ASP.NET Core - InvalidOperationException: Cannot find compilation library location for package 'Microsoft.Win32.Registry'
TL;DR Add following line to your .csproj file: false Introduction I was publishing a project I am working on to web server (Linux) and I had an issue with Razor Pages. However, it seems that this error occurs only when you precompile your Razor views (MVC views, Razor Pages). Why would you do that? Well, precompiling your views results in a smaller published bundle and faster startup time.
ASP.NET Core Interview Questions
Introduction ASP.NET Core and .NET Core have been in development for years already. If you look into ASP.NET Core MVC repository history, you will find commits from July 2013. These are the new frameworks from Microsoft, that are the completely open source and cross-platform.
dotnet CLI - how to update a NuGet package and add a new NuGet package
Adding and updating NuGet packages via command line - dotnet CLI Just like we can add, remove and update NuGet packages via UI in Visual Studio or Visual Studio Code we can accomplish the same using the dotnet CLI.