dotnet Migrate your database with Entity Framework Core using a separate application Migrate your database using a dedicated application that's responsible for migrating, seeding and clearing your database.
dotnet EF Core - Add a test to ensure that you don't forget to add new migrations Add a test that reminds you to create migrations (if you've forgotten).
dotnet core Prefix your http requests without touching the actual HttpClient code Prefix your http calls without modifying the actual HttpClient code using a custom DelegatingHandler
testing-your-dotnet-applications Testing your ASP.NET Core application - using a real database Second post in my "testing your dotnet application" series. This post will focus on using a real database when testing our application
dotnet core Protect yourself when deserializing - System.Text.Json When dealing with deserialization of JSON, it's always a good idea to validate that it in fact deserialized correctly. But, how do you do that using System.Text.Json?