Compiling C# code at runtime
This article provides informations about compiling C# code at runtime from a text source. We'll use the Roslyn compiler to dynamically build in-memory assembly. Prerequisities create Console Application .NET Core…
This article provides informations about compiling C# code at runtime from a text source. We'll use the Roslyn compiler to dynamically build in-memory assembly. Prerequisities create Console Application .NET Core…
Make debugging collections (and not only) easier and tell debugger what to show. The DebuggerDisplay attribute comes to the rescue! If you ever tried to find item on a list…
Azure Serverless Shopping Cart - Part 3 In the previous part we set up database with Entity Framework Code First approach. In this part we'll look at Azure Durable Functions…
Azure Serverless Shopping Cart - Part 2 In the previous part we setup our local environment. In this part we'll replace default code. We'll use Entity Framework Code First to…
Azure Serverless Shopping Cart - Part 1 In the previous part we talked about basic concept of the application. In this part we'll setup local Azure environment and create the…
How do you ensure that the API receives the correct model from the user? DataAnnotation comes to the rescue here. Which attribute should you use? Required vs BindRequired? In this…
Which programming language should I learn? Before you know how to start learning programming language. First of all - the question you need to answer is: why do you want…