Dispose() succeeds to delete db file but DisposeAsync() fails, why?
I want each integration test to create a unique database filename and delete it at the end of the test.
How to delete database file after each integration test case?
Objective and Problem I want to automatically both create a separate database file for each integration test case and delete it right after the test. I don’t understand the culprit why the creation success but the deletion fails. Could you figure out the culprit? The code below is intentionally made simpler only for illustrating the […]