Testing with SQLite
Learn the basics of testing EF Core applications using SQLite.
We'll cover the following...
Overview
Testing allows us to determine whether our applications work correctly and quickly notifies us if the application’s behavior regresses.
Note: This lesson discusses testing EF Core applications using SQLite, which has an in-memory database feature that is ideal for testing. The SQLite ...