In this post, I describe the new “keyed service” support for the dependency injection container, which came with .NET 8.0. Then, I’ll show you an example of usage within the ABP Framework.
In this article, we will see the new features of Minimal APIs in ASP.NET Core 8.0.
We can bind to forms using the [FromForm] attribute. Let’s see an example:
In this article, we will examine the enhancements introduced in EF Core 8 for the JSON column feature, building upon the foundation laid by JSON columns in Entity Framework Core 7.
Entity Framework Core has official support for HierarchyId, which allows you to…
Native AOT (Ahead-of-Time) compilation is a feature that allows developers to create a self-contained app compiled to native code that can run on machines without the .NET runtime installed. It results in benefits such as minimized disk footprint, reduced executable size…
The System.Text.Json namespace provides functionality for serializing to and deserializing from JSON. In .NET 8, there have been many improvements to the System.Text.Json serialization and deserialization functionality.
What can we do when we want to store a list of primitive types? Before EF Core 8, there were two options:
Blazor is a web framework that allows developers to build interactive web applications using…
Entity Framework Core 8.0 is being shipped in a week as a part of .NET 8.0. In this article, I will introduce the new Complex Types feature of EF Core 8 and show some examples of how you can use it in your…