Category: ASP.NET Core

Container Runtimes 0

Container Runtimes

One of the most frequent questions that they ask me about containers is to what extent they penalize performance. It is a very logical question because, in the end, the containers offer a certain...

How to Test Webhooks using ngrok 0

How to Test Webhooks using ngrok

Webhooks are an inter-application notification mechanism. For example, GitHub can notify an application via an HTTP request after each commit on a repository. The notified application can thus perform an operation immediately after the...

Avoid returning null in your code 0

Avoid returning null in your code

If you have read the book “Clean Code: A Handbook of Agile Software Craftsmanship” by Robert C. Martin, you know that how things could go wrong when you return null from a method! This time I...

ASP.NET Core: npm error when generating a Docker image of a project created with the React template 0

ASP.NET Core: npm error when generating a Docker image of a project created with the React template

I have seen this problem with a project generated from the React SPA template, but maybe it can be applied to other SPA templates (such as Angular). The error can be reproduced very easily....

Conversions (explicit or implicit) and interfaces in C# 0

Conversions (explicit or implicit) and interfaces in C#

One of the most useful, although more potentially dangerous, features of C# is the possibility of overloading the conversion operators ( casting ) and specifically the implicit conversion. Being able to overload the explicit...

1

Shrink JSON response using MessagePack

This pоst is аbоut hоw tо use MessаgePаck in ASP.NET Cоre аnd C#. It is all about Shrink JSON response using MessagePack even smaller and more efficient. MessagePack is an efficient binary serialization format. It...

0

Why to move to ASP.Net Core 2.1

ASP.Net 2.1 is packed with new features and improvements that make web development even more efficient but let’s see why to move to ASP.Net Core 2.1. With the release of version 2.1 of ASP.Net...