
How to Log and Debug EF Core SQL Queries
When I first started using Entity Framework Core, I had this feeling that everything was almost magical. I write some LINQ, hit Run, and boom,…
Solutions Architect | Developer | Blogger
Solutions Architect | Developer | Blogger

When I first started using Entity Framework Core, I had this feeling that everything was almost magical. I write some LINQ, hit Run, and boom,…

When I first started using Entity Framework Core seriously, I thought transactions were something “already handled by the database”. I remember thinking, why should I…

I always tell people that EF Core is one of those tools that looks very simple in the beginning. You do a few queries, call…
If you have been working with EF Core for a while, you probably stumbled on something called tracking and no tracking queries. When I first…

When I first learned about Clean Architecture, it looked like the perfect way to build software. Layers are separated, dependencies are inverted, and everything seems…

When I started writing software, people always tell me about patterns, architectures, clean code, solid, layered design, all those big words. They are all helpful,…

When I started working with Entity Framework Core (EF Core), unit testing wasn’t something I gave much attention to. I was more focused on building…

When I first tried using EF Core with Minimal APIs, I honestly thought it would be just a smaller version of a regular Web API…

When I first started mixing EF Core with Blazor WebAssembly, I honestly thought it would be as simple as plugging in my DbContext on the…

When I first started using EF Core inside an ASP.NET Core project, I honestly didn’t think too much about dependency injection. I just wanted to…