© 2022 Hashnode
#aspnet
The IActionResult type is a based abstraction of an ActionResult. 💡 An ActionResult is a return type of a controller method, also called an action method, and serves as the base class for *Result cl…
Github Actions are configurable yml files to automate all software workflows Before start better if we are aware of limitations, as Github user of a free plan every month every user gets a free genero…
Package managers main purpose is to distribute your code as a library for other developers to use. Few well-known library managers npm for node, similarly .NET has nuget There tons of memes on size o…
Recently, I asked a basic question to my end users – Can you imagine living in today’s world without the internet? And their answers were like, it feels as if there is no air to breathe, not possible – it’s a basic need, its unimaginable an…
A few weeks ago I had to develop a PoC which also involved a small backend. I thought this would be a good idea to try Minimal APIs, and based on this experience we would decide whether they are a good fit for us or not. Resources I think t…
Si no quieres leer el blog con las instrucciones, puedes ver el video en mi canal de Youtube Tu primer contenedor Para comenzar vamos a usar Visual Studio 2022 ya que es más fácil agregar el contenedo…
Part 1 - The APIThis a beginner friendly tutorial in Asp .NET 5 using the C# programming language where I build a simple REST API with asp .net coreGetting StartedNeeded Software :For this tutorial yo…
What is mocking? Mocking is a testing technique where mock objects are used instead of real objects for testing purposes. In general, in dotnet Moq or nSubstitute is a very popular mocking framework.…
It's currently a little after 10pm... Again it's the time of the day were I sit in front of my private computer and try to find a way to use my sparetime in a meaningful way. At first glance this mig…
Why API Endpoints API Endpoints Is A Way Of Organizing Your Code In An API. In This Approach, You Will Create A Specific Endpoint Class Instead Of A Controller Class Which Is A Lot Better Approach IMO…