
C#
Implicit Using in C#
Learn everything you need to know about implicit usings in C#. This guide covers how implicit usings work, how to manage them, and the benefits of using them to write cleaner, more efficient code in C# 10 and .NET 6
C#
Learn everything you need to know about implicit usings in C#. This guide covers how implicit usings work, how to manage them, and the benefits of using them to write cleaner, more efficient code in C# 10 and .NET 6
Oracle
Oracle's ODP.NET 23c Dev (or Oracle.ManagedDataAccess.Core) release brings genuine async/asynchronous methods to support to database interactions in C#, revolutionizing the way developers work with Oracle databases. Under PreRelease until today : 2023-08-24 Async/Await in C# Before delving into the specifics of ODP.NET 23c
JWT
This blog post will explore extracting a JWT token from incoming requests using C#. How to Get JWT Token from Request using C#
JWT
In this article, we will work on implementing C# JWT Authentication using .NET 7 - which also works for .NET 6, and preview .NET 8 - using ASP.NET Core.
ChatGPT
In this blog post, we will explore the steps to develop a C# application using DALL-E model to generate images from text.
Serilog
One of the key features of Serilog is the ability to Enrich Log Events with additional contextual information that can help in troubleshooting and debugging. In this blog post, we will explore how to create a Custom Enricher with Serilog to add custom properties to log events.
C#
Here is a small extension method over System.DateTime that gives its relative time readable for humans, such as: * one minute ago * 2 minutes ago * one hour ago * 3 hours ago * 3 days ago Check out this extension method over the DateTime structure using switch patterns. public static string AsTimeAgo(
C#
One of the new features of .NET 6 is the arrival of a new template, which will replace the default and bring a good reduction in code writing. Including the removal of the Startup.cs file. .NET 6 was released as LTS (long-term stable) which means support for 3 years.
C#
Let's set up Serilog as Logging Provider in the native logging system in .NET so you can use the Microsoft ILogger interface.
.NET 6
Explore how to extend the native API key authentication in your application. Our guide provides detailed steps for customizing and enhancing API key security and functionality to fit your specific needs.
DotNet
Learn how to implement health checks in your .NET Core application with our comprehensive guide. Ensure your app’s reliability and performance by integrating robust health monitoring features.