As .NET developers, we often reach for Entity Framework Core (EF Core) as our default data access layer. Typically, we spin up a single AppDbContext, register it in our Dependency […]
Read MoreThe Hybrid Revolution: Why .NET MAUI Blazor Hybrid is Winning Over Native XAML
This blog post explores why many developers—especially those in the .NET ecosystem—are shifting toward .NET MAUI Blazor Hybrid instead of traditional XAML-based approaches for cross-platform development. In the world of […]
Read MoreFire and Forget: Mastering Asynchronous Background Processing in ASP.NET Core
One of the quickest ways to kill your API’s performance is to force the user to wait for things they don’t actually need to witness. If a user clicks “Register,” […]
Read MoreStartup configure method
Did you know that you can inject any object in the Configure method of your startup class? For example if you want to inject ICustomer.
Read More