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 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 MoreSecure Your Local Development: Generate HTTPS Certificates for .test or .internal Domains
In today’s web development landscape, HTTPS isn’t just for production—it’s a necessity for local development and testing. Modern browsers enforce strict security policies, and features like authentication cookies or service […]
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