© 2023 Hashnode
#aspnet-core
Hello guys, this is the fourth part of a series where we are building a web API using ASP NET Core 7.0. In the previous post, we saw how to add some basic logging to our app to give us useful insight whenever an endpoint from our API was ca…
C# is an object-oriented programming language that provides various data types to store and manipulate data. Among these data types, var, dynamic, and object are some of the most commonly used. In thi…
Observability is a key concept in modern software development. It refers to the ability of a system to be monitored, measured, and understood in order to identify and address issues. In the context of…
Process of deploying .NET Core on Linux application to AWS Elastic Beanstalk. Search for Elastic Beanstalk Service from AWS Search box On top right corner click on create application button Create a …
Authentication is the process of verifying the identity of a user. It is very important because it makes the applications secure by permitting only authenticated users to access its protected resource…
Hey guys, I’m so glad to see you again on my blog. Today I’ll show you how to add logging to your asp net core applications and why you should do it. I’ll show you the basic aspects of application log…
When working with collections of data in C#, two commonly used interfaces are IEnumerable and IQueryable. While both interfaces allow developers to iterate over collections, they have some fundamental…
Angular Interceptor is a powerful feature in the Angular framework that allows developers to intercept and handle HTTP requests and responses. This feature enables developers to perform actions like a…
It has been four weeks and today is the beginning of the fifth week already at EGabriel boot camp, it went by so fast. A lot of things have been learned, meeting a few people and working with a team has been eye-opening. The first week was …
TL;DR This blog post shows how to replace .NET reflection with the functionality available on the IMessage interface, when dealing with C# objects generated using Protobuf's protoc compiler. IMessage.Descriptor is the way to access Protobuf…