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 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