Hi,
Is there any way to create a dbContext that runs completely within memory? Something like the TVirtualTable functionality that SDAC has, but for Oracle? Thanks!
Mocking an dbContext for fast integration tests
Re: Mocking an dbContext for fast integration tests
You should specify .UseInMemoryDatabase() instead of .UseOracle() in your DbContextOptionsBuilder to work with InMemory provider: https://docs.microsoft.com/en-us/ef/cor ... /in-memory.