DEV Community

Discussion on: Writing unit tests for EF Core

Collapse
 
fluffynuts profile image
Davyd McColl

Both will suffer from the edge-cases where in-memory works fine but the translation from your linq to server-side sql fails - I recommend using a temporary database with the same engine you're targeting. See my post above.