Given that .NET Core, as a runtime, is a both open source and multiplatform it’s easy to understand the desire to run your ASP.NET Core project on a Linux host. Practically always you can find a Linux webhost cheaper than[…]
Read more
Convert.ToDotNet("Everyone")
Given that .NET Core, as a runtime, is a both open source and multiplatform it’s easy to understand the desire to run your ASP.NET Core project on a Linux host. Practically always you can find a Linux webhost cheaper than[…]
Read moreIn the latest version of Visual Studio (2017) you have at least four different templates for creating a Class Library: Class Library (Universal Windows) Class Library (.NET Framework) Class Library (.NET Core) Class Library (.NET Standard) Additionally, you may also[…]
Read moreAzure Functions is a serverless compute service that enables you to run code on-demand without having to explicitly provision or manage infrastructure. This means that you can use Azure Functions to run a script or piece of code in response[…]
Read moreThe goal of microservices is to increase the velocity of application releases, by decomposing the application into small autonomous services that can be deployed independently. A microservices architecture also brings some challenges. By applying certain patterns you can mitigate these[…]
Read moreThe notion of patterns was introduced in C# version 7.0 and has taken ideas from functional programming to simplify and reduce your code. The concept is used in situations where we need to test that a value has a certain[…]
Read more